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

Last change on this file since 97fbc67 was 3a58bd6, checked in by Viktor <39170279+Tasevski2@…>, 3 years ago

Added Frontend

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