Skip to content

Instantly share code, notes, and snippets.

@oney
Created June 3, 2022 09:07
Show Gist options
  • Save oney/a0059637b2e39789e3ed725b46c0ea97 to your computer and use it in GitHub Desktop.
Save oney/a0059637b2e39789e3ed725b46c0ea97 to your computer and use it in GitHub Desktop.
function Note() {
const [text, setText] = useState('');
useEffect(($) => {
let count = 0;
const id = setInterval(() => {
count += 1; // 😚 Just modify count
saveDraft($.text, count);
}, 1000);
return () => clearInterval(id);
}, [], {text});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment