Skip to content
KB entry

Quickstart — your first Expo Router app

File-system routing, layouts, and tabs in 15 minutes.

Expo5 min read
React NativeReact

Spin up your first Expo Router app in 15 minutes.

Create the app

npx create-expo-app@latest my-app --template tabs

Routes

Files in the app/ directory map to routes. app/index.tsx is the home; app/settings.tsx becomes /settings; app/(tabs)/_layout.tsx defines a tab layout.


Back to Expo knowledge base