[Solved] Material-UI v5 not working styled-components and typescript?
React JS
Ab Siddik
Problem:
Recently, we working on a SPA(Single page application), we used React to develop this application. But when we try to import a box component from @mui/material/Box. We face Material-UI v5 not working styled-components and typescript
Solution:
Actually, it happened because @emotion/react and @emotion/styled are combined dependencies of many @mui packages. So we had to install these packages to resolve our problem.
npm i @emotion/react @emotion/styled
Thank you for reading the article. Hope the given solution will solve your problem.