I'm using Select2 in my ProfileForm component.
When ProfileForm is loading with react-loadable like
const ProfileForm = Loadable({ loader: () => import('containers/ProfileForm'), loading: MyLoadingComponent });
Select2 lose style
My temporary solution has been copy the css file and import it into my app.js
import './select2.min.css';
I'm using Select2 in my ProfileForm component. When ProfileForm is loading with react-loadable like
const ProfileForm = Loadable({ loader: () => import('containers/ProfileForm'), loading: MyLoadingComponent });
Select2 lose style
My temporary solution has been copy the css file and import it into my app.js
import './select2.min.css';