Typescript-React-Starter-Instructions

Starter instructions for Typescript + React project setup

Install npx

npm install npx

Create starter project

npx create-react-app my-app --template typescript

According to facebook,

If you've previously installed create-react-app globally via npm install -g create-react-app, 
we recommend you uninstall the package using npm uninstall -g create-react-app to ensure that
npx always uses the latest version. Global installs of create-react-app are no longer supported.

(source - https://create-react-app.dev/docs/adding-typescript)

(optional) Install react-bootstrap

cd my-app/
npm install react-bootstrap bootstrap

Make sure to add import "bootstrap/dist/css/bootstrap.css"; to your index.txs file