Skip to content

Commit 365781b

Browse files
Merge pull request #1 from Daslin-Davidson/fix/train-update
feat(trains): update sample train data with accurate departure and ar…
2 parents ea93776 + 728c088 commit 365781b

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

components/trains/train-status.tsx

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,22 @@ import { ArrowUpRightSmallIcon } from "../custom/icons";
55
const SAMPLE = {
66
trainNumber: "ITALO9512",
77
departure: {
8+
cityName: "Milan",
9+
stationCode: "MILANO",
10+
stationName: "Milano Centrale",
11+
timestamp: "2025-07-31T14:00:00Z",
12+
platform: "5",
13+
gate: "G5",
14+
},
15+
arrival: {
816
cityName: "Rome",
917
stationCode: "ROMA",
1018
stationName: "Roma Termini",
11-
timestamp: "2025-07-31T08:00:00Z",
12-
platform: "12",
13-
gate: "A1",
14-
},
15-
arrival: {
16-
cityName: "Florence",
17-
stationCode: "FI",
18-
stationName: "Firenze SMN",
19-
timestamp: "2025-07-31T09:30:00Z",
20-
platform: "3",
21-
gate: "B3",
19+
timestamp: "2025-07-31T18:30:00Z",
20+
platform: "11",
21+
gate: "G12",
2222
},
23-
totalDistanceInMiles: 144,
23+
totalDistanceInMiles: 388,
2424
};
2525

2626
export function Row({ row = SAMPLE.arrival, type = "arrival" }) {

0 commit comments

Comments
 (0)