react-use-date

React hook to get current date, updating automatically


Keywords
react, hook, hooks, date, time
License
MIT
Install
npm install react-use-date@0.3.1

Documentation

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.