We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
import { useFormatMoney } from 'react-use-pkg'; const Component = () => { const [value, setFormat] = useFormatMoney() return ( <div> {value} <button onClick(() => setFormat(1000000, 'us', 'USD'))>Format money!</button> </div> ) }