···11-# Welcome to your Expo app 👋
22-33-This is an [Expo](https://expo.dev) project created with
44-[`create-expo-app`](https://www.npmjs.com/package/create-expo-app).
55-66-## Get started
77-88-1. Install dependencies
99-1010- ```bash
1111- npm install
1212- ```
1313-1414-2. Start the app
1515-1616- ```bash
1717- npx expo start
1818- ```
1919-2020-In the output, you'll find options to open the app in a
2121-2222-- [development build](https://docs.expo.dev/develop/development-builds/introduction/)
2323-- [Android emulator](https://docs.expo.dev/workflow/android-studio-emulator/)
2424-- [iOS simulator](https://docs.expo.dev/workflow/ios-simulator/)
2525-- [Expo Go](https://expo.dev/go), a limited sandbox for trying out app
2626- development with Expo
2727-2828-You can start developing by editing the files inside the **app** directory. This
2929-project uses [file-based routing](https://docs.expo.dev/router/introduction).
3030-3131-## Get a fresh project
3232-3333-When you're ready, run:
3434-3535-```bash
3636-npm run reset-project
3737-```
3838-3939-This command will move the starter code to the **app-example** directory and
4040-create a blank **app** directory where you can start developing.
4141-4242-## Learn more
4343-4444-To learn more about developing your project with Expo, look at the following
4545-resources:
4646-4747-- [Expo documentation](https://docs.expo.dev/): Learn fundamentals, or go into
4848- advanced topics with our [guides](https://docs.expo.dev/guides).
4949-- [Learn Expo tutorial](https://docs.expo.dev/tutorial/introduction/): Follow a
5050- step-by-step tutorial where you'll create a project that runs on Android, iOS,
5151- and the web.
5252-5353-## Join the community
5454-5555-Join our community of developers creating universal apps.
5656-5757-- [Expo on GitHub](https://github.com/expo/expo): View our open source platform
5858- and contribute.
5959-- [Discord community](https://chat.expo.dev): Chat with Expo users and ask
6060- questions.
···11-// Don't add anything to this file! It needs to be minimal so that
22-// hot module reloading works properly on web.
33-44-import "@expo/metro-runtime";
55-import { registerRootComponent } from "expo";
66-import App from "./app";
77-88-registerRootComponent(App);