14 lines
271 B
TypeScript
14 lines
271 B
TypeScript
![]() |
import { FourOuFourView } from '../Views/FourOuFour'
|
||
|
import { MainLayout } from '../Layouts/MainLayout'
|
||
|
|
||
|
export const FourOuFourPage = () => {
|
||
|
return (
|
||
|
<MainLayout>
|
||
|
<FourOuFourView />
|
||
|
</MainLayout>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
// for lazy loading
|
||
|
export default FourOuFourPage
|