webapp/src/components/Pages/FourOuFourPage.tsx

14 lines
293 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-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