Renato Ribeiro
Renato Ribeiro
This is just a suggestion. If it sounds good, let me know. I'd love to be able to create my first pull request here. ### The case I see that...
Since `withSmartKnobs` encapsulates `withKnobs` here: https://github.com/lucasconstantino/storybook-addon-smart-knobs/blob/master/src/index.js#L65 The usage of `withKnobs` decorator in readme example is unnecessary duplicate, right? ```jsx storiesOf('Button') .addDecorator(withSmartKnobs) .addDecorator(withKnobs) // Smart knobed button) ```
Is there any way or plugin (vscode/atom) to use emmet with css-in-js, like `glamor`, `glamorous` or raw styles? ```js { display: 'flex', fontSize: '16px', marginTop: '10px', } ``` If it...
This avoids "re-animation" of same route when clicking in the same route link. That happens 'cos `location.key` always change on every route change (even the same route), but the `location.pathname`...
Some people configure your webpack to build JSX files with `.jsx` extension only (and maybe others extensions). In my case, I use `.jsx`... Could have an option to change this....
I'm trying to use a 3rd party component that allow you to pass a `className` prop, and this component create some variations like `${className}-hidden`, etc. So I tried to apply...
Some option do put some files in `/static/*` folder.
Actually shazam are installing same dependencies in all templates, *without* checking if the template needs. Example: shazam are installing `redux` dependencies in `default` template that don't need redux. Same problem...
Today we just render all map items in top/left to bottom/right order. We should care about: 1) Stackpos (grounds should render first than items, for example) 2) Understand how to...