14 lines
303 B
TypeScript
14 lines
303 B
TypeScript
import { FourOuFourView } from '../Views/FourOuFour'
|
|
import { PageWrap } from '../_shared/PageWrap'
|
|
|
|
export const FourOuFourPage = () => {
|
|
return (
|
|
<PageWrap isHeaderFixed={false} hideFooter={true}>
|
|
<FourOuFourView />
|
|
</PageWrap>
|
|
)
|
|
}
|
|
|
|
// for lazy loading
|
|
export default FourOuFourPage
|