diff --git a/src/components/Time.tsx b/src/components/Time.tsx index 61f0ba9..0ce1f66 100644 --- a/src/components/Time.tsx +++ b/src/components/Time.tsx @@ -4,11 +4,13 @@ import type { FunctionComponent } from "react"; type TimeProps = { time: Date; -} +}; const Time: FunctionComponent = ({ time }) => { return ( - + ); };