mirror of
https://github.com/streamich/react-use.git
synced 2026-01-25 14:17:16 +00:00
311 B
311 B
useStartTyping
React sensor hook that fires a callback when user start typing. Can be use to focus default input field on the page.
Usage
import useStartTyping from 'react-use/lib/useStartTyping';
const Demo = () => {
useStartTyping(() => alert('Started typing...'));
return null;
};