summaryrefslogtreecommitdiff
path: root/src/components/timeline/TimelineLabelsComponent.js
blob: 1f6053a1fba29208551d09e4873e7aaf996562d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
import React from "react";
import {convertSecondsToFormattedTime} from "../../util/date-time";

const TimelineLabelsComponent = ({currentTick, lastSimulatedTick}) => (
    <div className="timeline-labels">
        <div className="start-time-label">{convertSecondsToFormattedTime(currentTick)}</div>
        <div className="end-time-label">{convertSecondsToFormattedTime(lastSimulatedTick)}</div>
    </div>
);

export default TimelineLabelsComponent;