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