mdbootstrap / mdb-react-ui-kit

React 18 & Bootstrap 5 & Material Design 2.0 UI KIT
https://mdbootstrap.com/docs/b5/react/
Other
1.41k stars 264 forks source link

The mdbreact is installed with react version 15.6.1 but it can be imported #3

Closed thecassion closed 6 years ago

thecassion commented 7 years ago

` Failed to compile.

./src/App.js Module not found: Can't resolve 'mdbreact' in '/home/mypersonal/reactjs/src' `

jasiek-net commented 7 years ago

Try this: import { Card } from 'mdbreact/src'

SnakeHead commented 7 years ago

Not working for me, using: import { Nav } from 'mdbreact/src' I get: Uncaught SyntaxError: Unexpected token import

Using: import { Nav } from 'mdbreact' I get: Module not found: 'mdbreact' in /Users/geraldbailey/Desktop/react-router-firebase-auth-master/src/components

carlgrimm commented 7 years ago

The uncaught token import may be from not using transform-object-rest-spread in your babel plugins. Also you can see they alias their /src directory in webpack.config.js which fixed the resolve issues for me.

mattonit commented 6 years ago

Fixed :)