ReactJS | Cookbook
Inhaltsverzeichnis
General Readings
Create App
Run the following commands to create a new React Native project called “app-getting-started”:
npx create-react-app app-getting-started cd app-getting-started
Start App
npm start
Add Typescript Support
yarn create react-app app-getting-started-with-typescript --folder-name cd app-getting-started-with-typescript
yarn add typescript @types/node @types/react @types/react-dom @types/jest
Leave a Reply