webapp/src/components/Pages/FourOuFourPage.tsx
2022-09-22 11:37:49 +02:00

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