move App.tsx to src

This commit is contained in:
Loewy 2024-02-07 21:24:24 -08:00
parent f559c1e215
commit 03774a540f
3 changed files with 4 additions and 5 deletions

View File

@ -1,6 +1,6 @@
import { registerRootComponent } from "expo";
import App from "./App";
import App from "./src/App";
// registerRootComponent calls AppRegistry.registerComponent('main', () => App);
// It also ensures that whether you load the app in Expo Go or in a native build,

View File

@ -1,7 +1,6 @@
{
"name": "railbird-rn",
"version": "1.0.0",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "NODE_ENV=development && expo start",
"start:android": "expo start --android",

View File

@ -1,7 +1,7 @@
import React from "react";
import { AuthProvider } from "./src/context";
import { ClientProvider } from "./src/graphql/client";
import AppNavigator from "./src/navigation/app-navigator";
import { AuthProvider } from "./context";
import { ClientProvider } from "./graphql/client";
import AppNavigator from "./navigation/app-navigator";
const App: React.FC = () => {
return (