summaryrefslogtreecommitdiff
path: root/src/components/app/timeline/TimelineLabelsComponent.js
blob: e795691faaeb9845612141aed4ae8f2374a06a23 (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;