I'm researching ways to move away from legacy front ends using micro front ends.
Say I have a React Component Library using Typescript, is it possible to build the components individually so that I can then import them into the legacy html/js app with script tags and use them?
I know that Angular has Angular Elements which allow you to export the components as Web Components so I'm looking for something similar in React.
I've researched about this subject in a while, and my conclusion is to use web components with react https://reactjs.org/docs/web-components.html, however, I've not perform any proof of concept yet. Finally I used vuejs that it integrate with legacy websites very easy.