components#EnhancedTable JavaScript Examples

The following examples show how to use components#EnhancedTable. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: Tables.js    From paper-and-ink with MIT License 6 votes vote down vote up
export default function Tables() {
  const classes = useStyles();

  return (
    <div className={classes.root}>
      <Grid container spacing={4}>
        <Grid item xs={12}>
          <PageTitle title="Tables" />
        </Grid>
        <Grid item xs={12}>
          <Widget title="Simple Table">
            <SimpleTable />
          </Widget>
        </Grid>
        <Grid item xs={12}>
          <Widget title="Enhanced Table">
            <EnhancedTable />
          </Widget>
        </Grid>
      </Grid>
    </div>
  );
}