// ** Next Import import Link from 'next/link' // ** MUI Imports import Grid from '@mui/material/Grid' import Card from '@mui/material/Card' import Alert from '@mui/material/Alert' import Table from '@mui/material/Table' import { styled } from '@mui/material/styles' import TableRow from '@mui/material/TableRow' import TableHead from '@mui/material/TableHead' import TableCell from '@mui/material/TableCell' import TableBody from '@mui/material/TableBody' import CardHeader from '@mui/material/CardHeader' import CardContent from '@mui/material/CardContent' import TableContainer from '@mui/material/TableContainer' // ** Data Imports import componentData from 'src/@fake-db/components/data' const LinkStyled = styled(Link)(({ theme }) => ({ textDecoration: 'none', color: theme.palette.primary.main })) const Misc = () => { return ( We have themed each of the MUI components but we have skipped the demos of the following components. User can always copy componentcomponents/more/index.tsxs code and use from links given below. Components Links {componentData.map((data, index) => ( {data.component} {data.link} ))}
) } export default Misc