import React from 'react'; import PropTypes from 'prop-types'; import { withStyles } from '@material-ui/core/styles'; import { EmptyData } from 'ba-components'; import { Toolbar, Typography, Table, TableCell, TableHead, TableRow, Paper } from '@material-ui/core'; const styles = theme => ({ root: { width: '100%', marginTop: theme.spacing(3), overflowX: 'auto', }, table: { minWidth: 700, }, }); function EmptyTable(props) { const { classes } = props; return (
Nutrition
Dessert (100g serving) Calories Fat (g) Carbs (g) Protein (g)
); } EmptyTable.propTypes = { classes: PropTypes.object.isRequired, }; export default withStyles(styles)(EmptyTable);