Files
Trilium/apps/client/src/widgets/collections/NoteList.tsx

7 lines
144 B
TypeScript
Raw Normal View History

interface NoteListProps {
displayOnlyCollections?: boolean;
}
export default function NoteList({ }: NoteListProps) {
return <p>Hi</p>
}