piyush-eon/react-crypto-tracker

Makestyles Is No Longer Exported From @Mui/Material/Styles

Octet3290 opened this issue · 1 comments

Makestyles Is No Longer Exported From @Mui/Material/Styles

Just use styled() from '@mui/material',
ex If you want to Style a Box Mui Component, you should do something like this

const StyledBox = styled(Box)({
backgroundColor : "#14161a",
color : "white",
minHeight : "200vh"
})