import React from "react"; import { ClockIcon } from "@heroicons/react/solid"; function Header(props) { const { title, time } = props; return (
{title}
{time === undefined ? ( <> ) : ( )}
{time}
); } export default Header;