The current version of my material-ui library is as follows:
"@mui/icons-material": "^5.5.1",
"@mui/material": "^5.5.1",
This is how I included the Button component :
import Button from "@mui/material/Button";
Here's an example of how I am using the Button component :
<Button variant="contained"
className={styles.contactBtn}
autoFocus
onClick={handleClose}
>
Close
</Button>
An error message saying Cannot read properties of null (reading 'pulsate')https://i.sstatic.net/5iDXV.png is popping up.
I came across this thread on GitHub that was supposed to provide a solution: Link, but unfortunately, it did not resolve my issue. Can anyone help me fix this problem?