In my company we have:
- EPI Server (Optimizely) - .NET CMS solution for building webshop with a number of content blocks. Those content blocks can be nested
- React Library with front end components
How to tie them together without creating standalone front - end React SPA?
Initial approach was to use .cshtml templates and try to render our CMS content blocks as React components (that worked with Vue).
I have tested React.NET https://github.com/reactjs/React.NET/ but was not able to render nested blocks. Also it is not actively maintained.
Microsoft.AspNetCore.SpaServices - is Deprecated now. Microsoft.AspNetCore.SpaServices.Extensions - I can't find any docs and examples
I'm stuck, any ideas, libs or hints about general approach?