Skip to content
Irham Putra edited this page Apr 12, 2020 · 7 revisions

Documentation

Content

useFormatMoney

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>
   )
}
Clone this wiki locally