subin1224 / Simple-brain-training

[React] 간단한 뇌훈련테스트 입니다
0 stars 0 forks source link

AlarmClock 컴포넌트 작업 #19

Closed subin1224 closed 1 year ago

subin1224 commented 1 year ago
interface Props {
   initialTime: number;
  onTimeout: () => void;
}

카운트다운 하는 컴포넌트

subin1224 commented 1 year ago

사용 예시

const [countdown, setCountdown] = useState(false);

const countdownHandler = () => {
    setCountdown(true);
  };

....

<AlarmClock initialTime={5} onTimeout={countdownHandler} />
{countdown ? <p>CountDOWN</p> : <p>false</p>}