chore(react/collections): move files around for ease of development

This commit is contained in:
Elian Doran
2025-08-30 14:29:54 +03:00
parent bb55544f25
commit ffb90c2b4b
7 changed files with 34 additions and 26 deletions

View File

@@ -0,0 +1,7 @@
interface NoteListProps {
displayOnlyCollections?: boolean;
}
export default function NoteList({ }: NoteListProps) {
return <p>Hi</p>
}