Using JSX in React
Why JSX?
JSX allows html, css and js to be written in one place, as opposed to the old way of putting them in separate files.
Example JSX
Curly braces for dynamic strings.
export default function TodoList() {
const name = 'Gregorio Y. Zara';
retu...
avacacode.hashnode.dev1 min read