Sebastian Melinat
Results
2
comments of
Sebastian Melinat
I couldn't get @hugo-cardoso solution to work with a component that uses props. So I used the `attachTo` option instead: const div = document.createElement('div') div.id = 'root' document.body.appendChild(div) wrapper =...
Can confirm that @Adnan-kreiker 's workaround works, except for translations with substrings (something like `Foo {bar}`). To get them to work I made the hack a bit hackier: ``` beforeCreate...