From de8f12d74faef5fa3f9e38d1340948cab2d06ea3 Mon Sep 17 00:00:00 2001 From: Georgios Andreadis Date: Wed, 1 Jul 2020 13:33:31 +0200 Subject: Manually generate IDs --- .../app/timeline/TimelineLabelsComponent.js | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'frontend/src/components/app/timeline/TimelineLabelsComponent.js') diff --git a/frontend/src/components/app/timeline/TimelineLabelsComponent.js b/frontend/src/components/app/timeline/TimelineLabelsComponent.js index 6943a86f..55818d24 100644 --- a/frontend/src/components/app/timeline/TimelineLabelsComponent.js +++ b/frontend/src/components/app/timeline/TimelineLabelsComponent.js @@ -1,15 +1,15 @@ -import React from "react"; -import { convertSecondsToFormattedTime } from "../../../util/date-time"; +import React from 'react' +import { convertSecondsToFormattedTime } from '../../../util/date-time' const TimelineLabelsComponent = ({ currentTick, lastSimulatedTick }) => ( -
-
- {convertSecondsToFormattedTime(currentTick)} +
+
+ {convertSecondsToFormattedTime(currentTick)} +
+
+ {convertSecondsToFormattedTime(lastSimulatedTick)} +
-
- {convertSecondsToFormattedTime(lastSimulatedTick)} -
-
-); +) -export default TimelineLabelsComponent; +export default TimelineLabelsComponent -- cgit v1.2.3