Skip to content

Instantly share code, notes, and snippets.

@fepelipe
fepelipe / init-react-ts-app.sh
Last active October 5, 2023 20:27
Init React app with Typescript
echo "Name your React/Typescript app:"
read REACT-TS-APP-NAME
yarn create react-app $REACT-TS-APP-NAME --template typescript
cd $REACT-TS-APP-NAME
yarn add -D @typescript-eslint/eslint-plugin @typescript-eslint/parser eslint
yarn start