I installed materialUI, emotion/react and emotion/styled as required but can't get MUI to work on my react app. Nothing shows up on my webpage and theres no errors or anything in the console
Here's the code:
import { Button } from '@mui/material';
import './App.css';
function App() {
return (
<div className='app'>
<Button>Hello</Button>
</div>
)
}
export default App;
If I take away the MUI Button stuff, and simply put in an h1 tag, it works fine and shows up on the console/webpage, but anything MUI related doesn't