73 lines
1.6 KiB
TypeScript

export const items1 = [
{
id: '1',
expenseListId: '1',
title: 'Счет за интернет',
description: 'Ежемесячная плата за интернет',
date: '2024-04-01',
amount: 500,
currency: 'RUB',
count: 1,
createdAt: '2024-04-01T12:00:00Z',
updatedAt: '2024-04-01T12:00:00Z',
},
{
id: '2',
expenseListId: '1',
title: 'Покупка продуктов',
description: 'Продукты на неделю',
date: '2024-04-02',
amount: 3000,
currency: 'RUB',
count: 1,
createdAt: '2024-04-02T12:00:00Z',
updatedAt: '2024-04-02T12:00:00Z',
},
];
export const items2 = [];
export const items3 = null;
export const items4 = [
{
id: '3',
expenseListId: '4',
title: 'Бензин',
description: null,
date: '2024-04-03',
amount: 1500,
currency: 'RUB',
count: null,
createdAt: '2024-04-03T12:00:00Z',
updatedAt: '2024-04-03T12:00:00Z',
},
];
export const items5 = [
{
id: '4',
expenseListId: '5',
title: 'Ноутбук',
description: 'Покупка нового ноутбука',
date: '2024-04-04',
amount: 50000,
currency: 'RUB',
count: 1,
createdAt: '2024-04-04T12:00:00Z',
updatedAt: '2024-04-04T12:00:00Z',
},
{
id: '5',
expenseListId: '5',
title: 'Мышка',
description: 'Механическая мышка',
date: '2024-04-05',
amount: 3000,
currency: 'RUB',
count: 1,
createdAt: '2024-04-05T12:00:00Z',
updatedAt: '2024-04-05T12:00:00Z',
},
];