Skip to content

Latest commit

 

History

History
13 lines (8 loc) · 433 Bytes

create-a-react-native-app.md

File metadata and controls

13 lines (8 loc) · 433 Bytes

Create A React Native App

Category: React Native

Create a React Native app from the command line as follows:

npx react-native init MyProject --template react-native-template-typescript

You should always use TypeScript as the template for React Native apps because it enhances readability and maintainability of code.

Note: It is not possible to create a React Native app with a hyphen symbol in the name.