Reading Notes
What does React Native do when it builds your application? It translates it (renders it) in the native language necessary for the iPhone or Android platforms
Can you simply deploy a react web app to the phone? No, a react web app will be accessible to any platform if used in the browser, but to deploy locally it wil need to be in a native form.
npx create-next-app <app name>npm run dev starts development server<Link> allows you to do client-side navigationimport Link form 'next/Link'<h1> Learn <a href="www.x.com">Example</a></h1> to <h1> Read {' '} <Link href="www.x.com"><a>Example</a></Link></h1>npm install -g gatsby-cligatsby new <app name> create a new gatsby projectgatsby develop starts the development server on http://localhost:8000/npm install -g surge to install surge cligatsby build to prep a project for deploymentsurge public to publish