bmalehorn / react-use-date

React hook to get current date, updating automatically

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

react-use-date

minzipped size license

Basic usage:

const Clock = () => {
  const date = useDate();

  return <div>The current time is: {date.toISOString()}</div>;
};

Try the live demo for an in-depth explanation.

About

React hook to get current date, updating automatically


Languages

Language:JavaScript 92.9%Language:TypeScript 4.5%Language:HTML 2.6%