import React from 'react'; import { createStyles, Theme, makeStyles } from '@material-ui/core/styles'; import Chip from '@material-ui/core/Chip'; import Button from '@material-ui/core/Button'; import Grid from '@material-ui/core/Grid'; import Divider from '@material-ui/core/Divider'; import Typography from '@material-ui/core/Typography'; const useStyles = makeStyles((theme: Theme) => createStyles({ root: { width: '100%', maxWidth: 360, backgroundColor: theme.palette.background.paper, }, chip: { margin: theme.spacing(0.5), }, section1: { margin: theme.spacing(3, 2), }, section2: { margin: theme.spacing(2), }, section3: { margin: theme.spacing(3, 1, 1), }, }), ); export default function MiddleDividers() { const classes = useStyles(); return (
Toothbrush $4.50 Pinstriped cornflower blue cotton blouse takes you on a walk to the park or just down the hall.
Select type
); }