source: sources/client/src/components/admin/ParkingZoneSessions/mockData.js@ bc20307

Last change on this file since bc20307 was bc20307, checked in by Tasevski2 <39170279+Tasevski2@…>, 2 years ago

Push before video

  • Property mode set to 100644
File size: 607 bytes
Line 
1import moment from 'moment';
2
3export const sessionsData = [
4 {
5 id: 1,
6 start: moment().format('hh:mm - DD.MM.yyyy'),
7 zone: 'Zona 1',
8 plate: 'SK-8190-AV',
9 status: 'active',
10 parkingSpaceNumber: 'A31',
11 },
12 {
13 id: 2,
14 start: moment().format('hh:mm - DD.MM.yyyy'),
15 zone: 'Zona 2',
16 plate: 'ST-9312-OK',
17 status: 'idle',
18 parkingSpaceNumber: '',
19 },
20 {
21 id: 3,
22 start: moment().format('hh:mm - DD.MM.yyyy'),
23 end: moment().format('hh:mm - DD.MM.yyyy'),
24 zone: 'Zona 1',
25 plate: 'SK-6511-OS',
26 status: 'over',
27 parkingSpaceNumber: 'D4',
28 },
29];
Note: See TracBrowser for help on using the repository browser.