blob: 077ea4eb66f16c21393cda546c37d757f20b4e4e [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 MessageProps extends BoxProps {}
const Message = forwardRef<typeof Box, MessageProps>(({ ...props }, ref) => {
return (
<Page ref={ref}>
<Construction />
</Page>
)
})
Message.displayName = 'Message'
export default Message