blob: 9adab2e98c19d9ff2998f4c0c5013967f1437dcc (
about) (
plain)
1
2
3
4
5
6
|
// This is the first file that ReactNative will run when it starts up.
import App from "./app/app.tsx"
import { registerRootComponent } from "expo"
registerRootComponent(App)
export default App
|