UNPKG

react-translate-maker

Version:

React translation module. Internationalize your great project.

9 lines 254 B
import { useState, useCallback } from 'react'; export default (() => { const [, setState] = useState(0); const handleUpdate = useCallback(() => { setState(cnt => cnt + 1); }, []); return handleUpdate; }); //# sourceMappingURL=useUpdate.js.map