Julia Passynkova

Results 5 comments of Julia Passynkova

Thanks. I see that reselect is used but i don't think the example app shows a way to use immutable in PROD application. Even the comment says : _"For clarity...

As I see how react uses immutable with redux - they try not to perform toJS expensive operation but use immutable collection in JSX. Since all immutable collections are Iterable...

I think I found a solution to scroll to top that works for us: ``` setTimeout(() => { this.dataTable.offset = 0; this.dataTable.bodyComponent.updateOffsetY(0); }); ```

@Xepe, can you please explain why do you need to Compiler to make JIT compiler work in AOT?

I setup a new project with react and nx 19.0.3 and had to add historyApiFallback to webpack.config.js to make index.html to be served when the app path is not empty....