webapp/src/components/Pages/FourOuFourPage.tsx

14 lines
311 B
TypeScript
Raw Normal View History

2022-09-22 09:37:49 +00:00
import { FourOuFourView } from '../Views/FourOuFour'
import { MainLayout } from '../Layouts/MainLayout'
export const FourOuFourPage = () => {
return (
2022-09-29 11:15:59 +00:00
<MainLayout isHeaderFixed={false} hideFooter={true}>
2022-09-22 09:37:49 +00:00
<FourOuFourView />
</MainLayout>
)
}
// for lazy loading
export default FourOuFourPage