| Prefix |
Snippet |
money._ |
money |
tien._ |
tien |
todo._ |
todo |
workout._ |
workout |
Test for yourself
Directory structure
money
└── 📁src
└── 📁app
└── 📁(tabs)
├── _layout.tsx
├── detail.tsx
├── form.tsx
├── list.tsx
├── trash.tsx
├── _layout.tsx
├── index.tsx
└── 📁components
├── TransactionDeletedItem.tsx
├── TransactionItem.tsx
└── 📁db
├── index.ts
└── 📁types
├── transaction.d.ts
todo
└── 📁src
└── 📁app
└── 📁form
├── index.tsx
└── 📁home
└── 📁components
├── TodoItem.tsx
├── index.tsx
└── 📁trash
└── 📁components
├── TodoDeletedItem.tsx
├── index.tsx
├── _layout.tsx
├── index.tsx
└── 📁db
├── index.tsx
└── 📁types
├── Todo.d.ts
workout
└── 📁src
└── 📁app
└── 📁(tabs)
├── _layout.tsx
├── form.tsx
├── list.tsx
├── sync.tsx
├── trash.tsx
└── 📁components
├── WorkoutDeletedItem.tsx
├── WorkoutItem.tsx
├── _layout.tsx
├── index.tsx
└── 📁db
├── index.tsx
└── 📁types
├── workout.d.ts
tien
└── 📁src
└── 📁app
├── _layout.tsx
├── form.tsx
├── home.tsx
├── index.tsx
├── sync.tsx
├── trash.tsx
└── 📁components
├── TransactionDeletedItem.tsx
├── TransactionItem.tsx
└── 📁db
├── index.tsx
└── 📁types
├── transaction.d.ts
| |