React
Install
npx create-react-router@latest
JSX
Hooks
- 
useState: share and update variables - 
useContext: receive Information without props - 
useRef: hold information without rendering - 
useEffect: synchronize with external system 
CSS in React
CSS Modules
import styles from "./button.module.css";
export function Button() {
  return <button className={styles.Button}>A</button>;
}