-
-
Notifications
You must be signed in to change notification settings - Fork 0
Docs
Irham Putra edited this page Apr 12, 2020
·
7 revisions
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>
)
}