// ** Next Import import Link from 'next/link' // ** MUI Imports import Grid from '@mui/material/Grid' import { styled } from '@mui/material/styles' import Typography from '@mui/material/Typography' // ** Custom Components Imports import PageHeader from 'src/@core/components/page-header' // ** Demo Components Imports import TableBasic from 'src/views/table/data-grid/TableBasic' import TableFilter from 'src/views/table/data-grid/TableFilter' import TableColumns from 'src/views/table/data-grid/TableColumns' import TableEditable from 'src/views/table/data-grid/TableEditable' import TableBasicSort from 'src/views/table/data-grid/TableBasicSort' import TableSelection from 'src/views/table/data-grid/TableSelection' import TableServerSide from 'src/views/table/data-grid/TableServerSide' const LinkStyled = styled(Link)(({ theme }) => ({ textDecoration: 'none', color: theme.palette.primary.main })) const DataGrid = () => { return ( Data Grid } subtitle={ Data Grid is a fast and extendable react data table and react data grid. } /> ) } export default DataGrid