import React from "react"; import {convertSecondsToFormattedTime} from "../../util/date-time"; const TimelineLabelsComponent = ({currentTick, lastSimulatedTick}) => (
{convertSecondsToFormattedTime(currentTick)}
{convertSecondsToFormattedTime(lastSimulatedTick)}
); export default TimelineLabelsComponent;