f0ckapp_react/index.js

10 lines
187 B
JavaScript
Raw Normal View History

2020-01-20 17:24:37 +00:00
/**
* @format
*/
2020-01-20 17:32:35 +00:00
import {AppRegistry} from "react-native";
import App from "./src/App";
import {name as appName} from "./app.json";
2020-01-20 17:24:37 +00:00
AppRegistry.registerComponent(appName, () => App);