index.ts 295 B

12345678910111213
  1. import {
  2. AppRegistry
  3. } from "react-native";
  4. import {
  5. name as appName
  6. } from "./app.json";
  7. import App from "../src/index";
  8. AppRegistry.registerComponent(appName, () => App);
  9. AppRegistry.runApplication(appName, {
  10. initialProps: {},
  11. rootTag: document.getElementById("app-root")
  12. });