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