initial commit

This commit is contained in:
ferdiansyah783
2025-08-05 12:35:40 +07:00
commit fffa2ead5c
1069 changed files with 118056 additions and 0 deletions
+24
View File
@@ -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