mirror of
https://github.com/zadam/trilium.git
synced 2025-11-17 10:40:41 +01:00
7 lines
144 B
TypeScript
7 lines
144 B
TypeScript
|
|
interface NoteListProps {
|
||
|
|
displayOnlyCollections?: boolean;
|
||
|
|
}
|
||
|
|
|
||
|
|
export default function NoteList({ }: NoteListProps) {
|
||
|
|
return <p>Hi</p>
|
||
|
|
}
|