aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app/components/GolfWatchApps/GolfWatchAppStarting.tsx
blob: 643af93355a5c992f6eab768f67e2108ee08407d (plain)
1
2
3
4
5
6
7
export default function GolfWatchAppStarting({
  timeLeft,
}: {
  timeLeft: number;
}) {
  return <div>Starting... ({timeLeft} s)</div>;
}