Hello
Perhaps I did something incorrectly, but running:
npm install --save react-bootstrap-extended
and after a successful install (verified on package.json) in my React I now have
import { Panel } from 'react-bootstrap-extended'
but when compiling get
Cannot find module 'react-bootstrap-extended'
I have a feeling it has something to do with all these large react changes that have been happening as of late, for example in your package.json you have
"es2015", "stage-0", "react"
But I believe es2015 has been replaced by 'env' for babel
Just a guess not sure why its complaining otherwise
Hello
Perhaps I did something incorrectly, but running:
npm install --save react-bootstrap-extendedand after a successful install (verified on package.json) in my React I now have
import { Panel } from 'react-bootstrap-extended'
but when compiling get
Cannot find module 'react-bootstrap-extended'
I have a feeling it has something to do with all these large react changes that have been happening as of late, for example in your package.json you have
"es2015", "stage-0", "react"But I believe es2015 has been replaced by 'env' for babel
Just a guess not sure why its complaining otherwise