Initial commit
This commit is contained in:
45
src/screens/wallet/payment/lib/data.ts
Normal file
45
src/screens/wallet/payment/lib/data.ts
Normal file
@@ -0,0 +1,45 @@
|
||||
type PaymentStatus = 'paid' | 'unpaid';
|
||||
|
||||
interface PaymentData {
|
||||
id: string;
|
||||
reys: string;
|
||||
weight: string;
|
||||
count: number;
|
||||
totalPrice: string;
|
||||
status: PaymentStatus;
|
||||
}
|
||||
|
||||
export const fakePayments: PaymentData[] = [
|
||||
{
|
||||
id: '1',
|
||||
reys: 'Avia-CP-22',
|
||||
weight: '10kg',
|
||||
count: 5,
|
||||
totalPrice: '78 980 so’m',
|
||||
status: 'unpaid',
|
||||
},
|
||||
{
|
||||
id: '2',
|
||||
reys: 'Avia-CP-23',
|
||||
weight: '8kg',
|
||||
count: 3,
|
||||
totalPrice: '52 000 so’m',
|
||||
status: 'paid',
|
||||
},
|
||||
{
|
||||
id: '3',
|
||||
reys: 'Avia-CP-24',
|
||||
weight: '15kg',
|
||||
count: 7,
|
||||
totalPrice: '100 500 so’m',
|
||||
status: 'paid',
|
||||
},
|
||||
{
|
||||
id: '4',
|
||||
reys: 'Avia-CP-25',
|
||||
weight: '12kg',
|
||||
count: 6,
|
||||
totalPrice: '88 200 so’m',
|
||||
status: 'paid',
|
||||
},
|
||||
];
|
||||
Reference in New Issue
Block a user