blob: c0cc20a511ee81db3527a62eda6149160ae308b7 [file] [log] [blame]
import React, { forwardRef } from 'react'
import { Box, BoxProps } from '@mui/material'
import Page from '../../components/Page'
import Construction from '../../components/Construction'
interface SecurityProps extends BoxProps {}
const Security = forwardRef<typeof Box, SecurityProps>(({ ...props }, ref) => {
return (
<Page ref={ref}>
<Construction />
</Page>
)
})
Security.displayName = 'Security'
export default Security