Skip to content

1mehdifaraji/react-cool-timer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

react-cool-timer

React timer countdown hook with easy to use API .

Installation

npm install --save react-cool-timer

or

yarn add react-cool-timer

or

pnpm add react-cool-timer

Usage

import { useTimer } from "react-cool-timer";

export const App = () => {
  const { timeLeft } = useTimer({
    onEndReached: () => console.log("Reached end"),
    timeInterval: 20,
  });
  return <div>Timeleft : {timeLeft}</div>;
};

Available props

Name Type Default Description
onEndReached () => void null Sets a function to run after timer ends
timeInterval number REQUIRED Sets time interval in seconds

Developer

@1mehdifaraji