Old React Notes
React Foundations
Learn the fundamental JavaScript and React concepts that'll help you get started with Next.js.
# create app
npx create-react-app app_name
cd app_name
npm start
# to install
npm i package-nameimport React from 'react';
import ReactDOM from 'react-dom';
ReactDOM.render(<h1>hello</h1>,
document.getElementById('app'));