What is JSX?
A special dialect of js (not HTML)
Do browsers understand JSX code?
No! We use a tool to turn the code into js
How do you style css code in jsx?
background-color becomes backgroundColor and “ “ becomes {{ }}
How do you add a jsx class name?
className
If you want to add javascript in jsx you have to put the js code in?
{ one set of curly braces }
-g
install packages globally so we can run it from the terminal
What is the code to install a node package?
npm install -g package-name