From 751a9ef3a12c952fe179f256d854d0c4aa37e28e Mon Sep 17 00:00:00 2001 From: Georgios Andreadis Date: Wed, 4 Oct 2017 22:49:07 +0200 Subject: Apply prettier to codebase --- src/components/app/timeline/TimelineLabelsComponent.js | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'src/components/app/timeline/TimelineLabelsComponent.js') diff --git a/src/components/app/timeline/TimelineLabelsComponent.js b/src/components/app/timeline/TimelineLabelsComponent.js index e795691f..6943a86f 100644 --- a/src/components/app/timeline/TimelineLabelsComponent.js +++ b/src/components/app/timeline/TimelineLabelsComponent.js @@ -1,11 +1,15 @@ import React from "react"; -import {convertSecondsToFormattedTime} from "../../../util/date-time"; +import { convertSecondsToFormattedTime } from "../../../util/date-time"; -const TimelineLabelsComponent = ({currentTick, lastSimulatedTick}) => ( -
-
{convertSecondsToFormattedTime(currentTick)}
-
{convertSecondsToFormattedTime(lastSimulatedTick)}
+const TimelineLabelsComponent = ({ currentTick, lastSimulatedTick }) => ( +
+
+ {convertSecondsToFormattedTime(currentTick)}
+
+ {convertSecondsToFormattedTime(lastSimulatedTick)} +
+
); export default TimelineLabelsComponent; -- cgit v1.2.3