You can remove the elevation from Material UI's AppBar by setting the elevation prop to 0.
This works because the Material UI API is design to composable see: https://material-ui.com/guides/minimizing-bundle-size/
<AppBar elevation={0}></AppBar>
You can remove the elevation from Material UI's AppBar by setting the elevation prop to 0.
This works because the Material UI API is design to composable see: https://material-ui.com/guides/minimizing-bundle-size/
<AppBar elevation={0}></AppBar>
For further actions, you may consider blocking this person and/or reporting abuse
Anmol Baranwal -
Peter Mbanugo -
MedCode -
Vincent Odukwe -
Top comments (3)
thanks this helped me and saved time
Really glad to hear that man! Keep at it!
Thanks for taking the time to post this. Helped a lot.