initial commit
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
// MUI Imports
|
||||
import Grid from '@mui/material/Grid2'
|
||||
|
||||
// Type Imports
|
||||
import type { UsersType } from '@/types/apps/userTypes'
|
||||
|
||||
// Component Imports
|
||||
import UserListTable from './UserListTable'
|
||||
import UserListCards from './UserListCards'
|
||||
|
||||
const UserList = ({ userData }: { userData?: UsersType[] }) => {
|
||||
return (
|
||||
<Grid container spacing={6}>
|
||||
<Grid size={{ xs: 12 }}>
|
||||
<UserListCards />
|
||||
</Grid>
|
||||
<Grid size={{ xs: 12 }}>
|
||||
<UserListTable tableData={userData} />
|
||||
</Grid>
|
||||
</Grid>
|
||||
)
|
||||
}
|
||||
|
||||
export default UserList
|
||||
Reference in New Issue
Block a user