I have to upgrade an existing application with new features. It is an MPA web application, developed using the express framework under Node, and serving the HTML from EJS templates. I'm ok about using vanilla JS/jQuery but I'm curious if it would be possible to integrate a React based UI component library, like PrimeReact, to use some of its components in the EJS files to make the development easier.
I know that I should install and configure Babel for transpiling the JSX but I couldn't find any examples about how to do it and how to use the React component in the EJS template.
Anyone with a similar case? Cheers!