mirror of
https://github.com/zoriya/react-native-omni.git
synced 2026-08-05 21:58:54 +00:00
14 lines
274 B
JavaScript
14 lines
274 B
JavaScript
/**
|
|
* @format
|
|
*/
|
|
|
|
import { AppRegistry } from "react-native";
|
|
import App from "./App";
|
|
import { name as appName } from "./app.json";
|
|
|
|
AppRegistry.registerComponent(appName, () => App);
|
|
|
|
AppRegistry.runApplication(appName, {
|
|
rootTag: document.getElementById("root"),
|
|
});
|