# React Countdown Hook ### Installation ```shell script # NPM npm i @cubetiq/react-use-countdown # Yarn yarn add @cubetiq/react-use-countdown ``` ### Example ```js import React from 'react'; import ReactDOM from 'react-dom'; // import the countdown hook here import { useCountdown } from 'cubetiq-react-use-countdown'; const App = () => { const { timeleft, start } = useCountdown({ step: 1000, }); return (