Anurag V

Results 2 comments of Anurag V

@joenot443 were you able to solve the FOUC issue?

@apecollector I had the similar experience with `renderToStaticMarkup` method, which escapes html tags, new line etc. I used [unescape](https://lodash.com/docs/4.17.15#unescape) from lodash to fix it. ```js _.unescape('&query=value'); ``` outputs ``` &query=value...