Files
tolaria/src/components/NoteList.tsx
2026-04-08 14:01:19 +02:00

11 lines
347 B
TypeScript

import { memo } from 'react'
import { NoteListLayout } from './note-list/NoteListLayout'
import { useNoteListModel, type NoteListProps } from './note-list/useNoteListModel'
function NoteListInner(props: NoteListProps) {
const model = useNoteListModel(props)
return <NoteListLayout {...model} />
}
export const NoteList = memo(NoteListInner)