👩💻 Join our community of thousands of amazing developers!
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...