react-use-date
v0.3.1
Published
React hook to get current date, updating automatically
Downloads
15
Readme
react-use-date
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.
