16 lines
428 B
TypeScript
16 lines
428 B
TypeScript
import { FourOuFourView } from '../components/Views/FourOuFour'
|
|
import { PageLayout } from '../components/_shared/PageLayout'
|
|
import { useLocalize } from '../context/localize'
|
|
|
|
export const FourOuFourPage = () => {
|
|
const { t } = useLocalize()
|
|
|
|
return (
|
|
<PageLayout isHeaderFixed={false} hideFooter={true} title={t('Nothing is here')}>
|
|
<FourOuFourView />
|
|
</PageLayout>
|
|
)
|
|
}
|
|
|
|
export const Page = FourOuFourPage
|