···1-# Welcome to your Expo app 👋
2-3-This is an [Expo](https://expo.dev) project created with
4-[`create-expo-app`](https://www.npmjs.com/package/create-expo-app).
5-6-## Get started
7-8-1. Install dependencies
9-10- ```bash
11- npm install
12- ```
13-14-2. Start the app
15-16- ```bash
17- npx expo start
18- ```
19-20-In the output, you'll find options to open the app in a
21-22-- [development build](https://docs.expo.dev/develop/development-builds/introduction/)
23-- [Android emulator](https://docs.expo.dev/workflow/android-studio-emulator/)
24-- [iOS simulator](https://docs.expo.dev/workflow/ios-simulator/)
25-- [Expo Go](https://expo.dev/go), a limited sandbox for trying out app
26- development with Expo
27-28-You can start developing by editing the files inside the **app** directory. This
29-project uses [file-based routing](https://docs.expo.dev/router/introduction).
30-31-## Get a fresh project
32-33-When you're ready, run:
34-35-```bash
36-npm run reset-project
37-```
38-39-This command will move the starter code to the **app-example** directory and
40-create a blank **app** directory where you can start developing.
41-42-## Learn more
43-44-To learn more about developing your project with Expo, look at the following
45-resources:
46-47-- [Expo documentation](https://docs.expo.dev/): Learn fundamentals, or go into
48- advanced topics with our [guides](https://docs.expo.dev/guides).
49-- [Learn Expo tutorial](https://docs.expo.dev/tutorial/introduction/): Follow a
50- step-by-step tutorial where you'll create a project that runs on Android, iOS,
51- and the web.
52-53-## Join the community
54-55-Join our community of developers creating universal apps.
56-57-- [Expo on GitHub](https://github.com/expo/expo): View our open source platform
58- and contribute.
59-- [Discord community](https://chat.expo.dev): Chat with Expo users and ask
60- questions.
···1-// Don't add anything to this file! It needs to be minimal so that
2-// hot module reloading works properly on web.
3-4-import "@expo/metro-runtime";
5-import { registerRootComponent } from "expo";
6-import App from "./app";
7-8-registerRootComponent(App);