react

Jsx as Template

Aug 27, 2022
react

JSX as a templating language # If you are doing web development in react, you would know what JSX is. If not go look it up, I’m not going to explain. And if your using typescript in web development it’s tsx. This is how a sample JSX looks like const SampleJsx = () => { return ( <div> <div>SampleJSX<div> </div> ) } And this is how a regular XML looks like ...