import React from "react"; import { makeNiceDate } from "../../../common/utilities"; const TimelineHeader = ({ title, from, to, onClick, hideInfo }) => { const d0 = from && makeNiceDate(from); const d1 = to && makeNiceDate(to); return (
onClick()}>

{d0} - {d1}

); }; export default TimelineHeader;