webapp/src/components/Pages/FourOuFourPage.tsx

14 lines
303 B
TypeScript
Raw Normal View History

2022-09-22 09:37:49 +00:00
import { FourOuFourView } from '../Views/FourOuFour'
2022-11-14 17:41:05 +00:00
import { PageWrap } from '../_shared/PageWrap'
2022-09-22 09:37:49 +00:00
export const FourOuFourPage = () => {
return (
<PageWrap isHeaderFixed={false} hideFooter={true}>
2022-09-22 09:37:49 +00:00
<FourOuFourView />
</PageWrap>
2022-09-22 09:37:49 +00:00
)
}
// for lazy loading
export default FourOuFourPage