A simple React Native application example written in Typescript
First, on project root directory, install the dependencies
yarn install
or
npm install
After that, run the metro instance:
yarn start
or
npm start
And, on other terminarl, run the app on your platform (android or ios)
yarn android (or ios)
or
npm android (or ios)
To run the tests, on project root directory, run:
yarn test
or
npm test