webapp/src/pages/drafts.page.tsx

18 lines
416 B
TypeScript
Raw Normal View History

2023-04-21 15:10:23 +00:00
import { PageLayout } from '../components/_shared/PageLayout'
2023-05-08 17:21:06 +00:00
import { Title } from '@solidjs/meta'
import { useLocalize } from '../context/localize'
import { DraftsView } from '../components/Views/DraftsView'
2023-04-21 15:10:23 +00:00
export const DraftsPage = () => {
2023-05-08 17:21:06 +00:00
const { t } = useLocalize()
2023-04-21 15:10:23 +00:00
return (
<PageLayout>
2023-05-08 17:21:06 +00:00
<Title>{t('Drafts')}</Title>
<DraftsView />
2023-04-21 15:10:23 +00:00
</PageLayout>
)
}
export const Page = DraftsPage