import { useAtomValue } from "jotai"; import { startingLeftTimeSecondsAtom } from "../../states/watch"; type Props = { gameDisplayName: string; }; export default function GolfWatchAppStarting({ gameDisplayName }: Props) { const leftTimeSeconds = useAtomValue(startingLeftTimeSecondsAtom)!; return (