I get
./src/components/styles.js Attempted import error: '@material-ui/core/styles' does not contain a default export (imported as 'makeStyles').
when I try to run my react app. How would I resolve this?
Here are the contents of styles.js for reference:
import makeStyles from "@material-ui/core/styles";
export default makeStyles(()=>({ ul:{ justifyContent: "space-around", }, }));