Home > Software design >  material bootstrap design is not working at React 18
material bootstrap design is not working at React 18

Time:05-30

enter image description hereI have tried to install mdb-ui-kit in react version 18. is there any alternative way to install it?

CodePudding user response:

This package has react 17 as a peer dependency. Try to force the installation with

npm i mdb-react-ui-kit -- force

and test if it's still working. Otherwise you can downgrade your react version to 17.

  • Related