// 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 ( ) } export default UserList