Skip to content

Instantly share code, notes, and snippets.

@Yiannistaos
Created October 19, 2023 14:03
Show Gist options
  • Save Yiannistaos/cfb9ad5cc1bb274fbe905e49bfe3e671 to your computer and use it in GitHub Desktop.
Save Yiannistaos/cfb9ad5cc1bb274fbe905e49bfe3e671 to your computer and use it in GitHub Desktop.
Source Tree Example (markdown)

Source Tree Example (markdown)

src
├── App.tsx
├── ui
│   └── hooks
│   │   └── index.tsx
│   ├── components
│   │   └── common
│   │   │   └── index.tsx
│   ├── navigation
│   │   └── BottomNavigator
│   │   │   └── index.tsx
│   │   └── MainNavigator
│   │   │   └── index.tsx
│   │   └── config-routes
│   │   │   └── stack.ts
│   │   │   └── tabs.ts
│   │   └── index.ts
│   ├── screens
│   │   └── HomeScreen
│   │   │   └── index.tsx
│   │   │   └── style.tsx
│   │   └── LoginScreen
│   │   │   └── index.tsx
│   │   │   └── style.tsx
│   │   └── index.ts
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment