Skip to content

Files

Latest commit

 

History

History
33 lines (33 loc) · 804 Bytes

README.md

File metadata and controls

33 lines (33 loc) · 804 Bytes
src/
├── assets/
│   └── images/
├── components/
│   ├── Auth/
│   │   ├── Login.tsx
│   │   └── Register.tsx
│   ├── Product/
│   │   ├── ProductList.tsx
│   │   └── ProductDetail.tsx
│   └── Common/
│       ├── Header.tsx
│       └── Footer.tsx
├── navigation/
│   └── MainNavigator.tsx
├── screens/
│   ├── HomeScreen.tsx
│   ├── CartScreen.tsx
│   ├── ProfileScreen.tsx
│   └── OrderScreen.tsx
├── services/
│   ├── auth.ts
│   ├── product.ts
│   └── order.ts
├── styles/
│   ├── colors.ts
│   └── common.ts
├── utils/
│   └── api.ts
├── App.tsx
└── index.ts