mafap/client/src/components/timerCard.tsx

4 lines
81 B
TypeScript
Raw Normal View History

2023-04-04 01:14:07 -04:00
export default function TimerCard({ timer }) {
return <h1>{timer.name}</h1>;
}