We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51b0c7b commit b6ecf2eCopy full SHA for b6ecf2e
src/pages/tables/Tables.js
@@ -29,16 +29,14 @@ const datatableData = [
29
const Tables = props => (
30
<Grid container spacing={32}>
31
<Grid item xs={12}>
32
- <Widget title="Material Datatable" upperTitle noBodyPadding>
33
- <MUIDataTable
34
- title="Employee List"
35
- data={datatableData}
36
- columns={["Name", "Company", "City", "State"]}
37
- options={{
38
- filterType: 'checkbox',
39
- }}
40
- />
41
- </Widget>
+ <MUIDataTable
+ title="Employee List"
+ data={datatableData}
+ columns={["Name", "Company", "City", "State"]}
+ options={{
+ filterType: 'checkbox',
+ }}
+ />
42
</Grid>
43
44
<Widget title="Material-UI Table" upperTitle noBodyPadding>
0 commit comments