Rename navbar components

This commit is contained in:
Joscha 2025-01-28 22:23:37 +01:00
parent e18e898102
commit d9722e13f7
5 changed files with 12 additions and 11 deletions

View file

@ -1,6 +1,6 @@
<script setup lang="ts">
import CNavbar from "./components/CNavbar.vue";
import CNote from "./components/CNote.vue";
import Navbar from "./components/Navbar.vue";
import { Note } from "./types";
const testNote: Note = {
@ -14,7 +14,7 @@ const testNote: Note = {
<template>
<div class="flex h-screen touch-pan-x touch-pan-y flex-col">
<Navbar />
<CNavbar />
<div class="h-full overflow-auto px-2 py-1">
<CNote :note="testNote" />
</div>