react-native-template-tuil
Version:
Clean and minimalist React Native template for a quick start with TypeScript.
11 lines (8 loc) • 349 B
JavaScript
/**
* This file in the entrypoint of react-native. All executed code
* will be running trough this file. The entrypoint for metro should be
* a .js file, all other files can be written in typescript (.ts/.tsx)
*/
import { AppRegistry } from 'react-native'
import Root from './app/root'
AppRegistry.registerComponent('ProjectName', () => Root)