Andrej Premrn

Results 20 comments of Andrej Premrn

Does it make any sense to resume the development of this plugin? There is also one more problem with `kneden`. As referenced in #120, `kneden`doesn't follow the control flow of...

@TheGrandmother You first need to transpile your code to ES5, if you want the plugin to work as expected. That way, all the variables get hoisted to the top of...

I've also been eyeing the lib since it provides the sweet spot between the readability of the code and productivity. It would be really great if someone could take over...

> @mikirejf feel free to try out my version for now, currently it's a typescript clone but will be getting some updates down the line. Will take a closer look...

I also went with chakra. It's nice because you can install only the packages you want to use. That way you can also avoid bloating the bundle with their default...

Please check the following example: [codesandbox v18](https://codesandbox.io/s/usereducer-v18-0vytuh?file=%2Fsrc%2FApp.js) The state is always the same and preferentially stable (number 15). However, the component rerenders on every button click. That doesn't reflect the...

Would love to have a faster option that doesn't require a full prod build. 🙏

Using `ref: true` svgr option includes all imported svgs as react components, even if the react component wasn't explicitly imported. I don't think this is intended behavior. For example, passing...

@gregberge Let's say we have the following react code: ``` import logo from './logo.svg'; function App() { return ; } ``` With default SVGR options, a bundler (in my case...