-
Notifications
You must be signed in to change notification settings - Fork 29
Open
Labels
Description
Hello. I'm encountering this error when importing the style.css
Uncaught Error: Cannot find module 'react-sweet-progress/lib/style.css'
My component looks like this:
import { Progress } from 'react-sweet-progress'
import 'react-sweet-progress/lib/style.css'
class ProgressModal extends Component {
render () {
const { onCloseModal } = this.props
return (
<Fragment>
<ModalBody>
<Progress percent={88} status='active' />
</ModalBody>
<ModalFooter>
<button disabled onClick={onCloseModal}>
Please wait a moment
</button>
</ModalFooter>
</Fragment>
)
}
}