Using Create React App this plugin does not work as expected. <img width="695" alt="screen shot 2018-01-19 at 11 22 44 pm" src="https://user-images.githubusercontent.com/3144419/35181065-d5d5fce2-fd6f-11e7-9a8d-c78b0ca0af63.png"> import React, { Component } from 'react'; import { SpeedDial, SpeedDialItem } from 'react-mui-speeddial'; class Dashboard extends Component { constructor(props) { super(props); this.state={} } render() { return ( <div className="container"> <h1>Content</h1> </div> ); } } export default Dashboard;