import DashboardLayout from '@/components/dashboard/dashboard-layout' import ProtectedAdmin from '@/layouts/main-layout-protected-admin' import { Button, FormControl, FormHelperText, TextField, Typography} from '@mui/material' import { useEffect, useState } from 'react' const Admin = () => { return ( <DashboardLayout> <ProtectedAdmin> <Typography variant='h2'>Admin</Typography> </ProtectedAdmin> </DashboardLayout> ) } export default Admin