Joan Mira

Results 33 comments of Joan Mira

I think the issue is just with one of the `select2`, the one that has a data array of 2000 items. It seems that when loading it for the first...

I ended up building my own tour. I can share the component if you like

You can also remove them from your `package.json` build script. Something like this: `"build": "rm -rf dist && webpack -p --config ./webpack/webpack-prod.config.js --colors && rm ./dist/assets/scripts/*.map"`

Raised a PR: https://github.com/brandonweiss/charge/pull/1099

Hi. The website I'm building has many pages, so I prefer to have a folder for each of them that contains an `index.html.jsx` and a `styles.jsx` file.

Thanks for your suggestions. I get your point, but the use of `index` files is at the core of how web servers work. I wouldn't bypass that just because of...

@igorrmotta @moroshko @Anovative I also have this error when using my own `Paper` component (instead of the MUI one). If I use the original [MUI Paper component](https://github.com/mui-org/material-ui/blob/master/packages/material-ui/src/Paper/Paper.js) then it works...

Here is sandbox that another user made to show the issue: https://codesandbox.io/s/5yzq54p8yl

I will also use the workaround for now

I'm having the same issue as @KalpanaPagariya. This is my `store.jsx` file: ``` import { createStore, applyMiddleware, compose } from 'redux'; import { routerMiddleware } from 'react-router-redux'; import thunk from...