16 lines
363 B
TypeScript
16 lines
363 B
TypeScript
import { DraftsView } from '../components/Views/DraftsView'
|
|
import { PageLayout } from '../components/_shared/PageLayout'
|
|
import { useLocalize } from '../context/localize'
|
|
|
|
export const DraftsPage = () => {
|
|
const { t } = useLocalize()
|
|
|
|
return (
|
|
<PageLayout title={t('Drafts')}>
|
|
<DraftsView />
|
|
</PageLayout>
|
|
)
|
|
}
|
|
|
|
export const Page = DraftsPage
|