Guest User

Untitled

a guest
Nov 19th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. const customFormats = {
  2. number: {
  3. noGroupingFormat: {
  4. useGrouping: false,
  5. }
  6. }
  7. }
  8.  
  9. const App = (props) =>
  10. <div>
  11. <IntlProvider
  12. locale={props.locale}
  13. messages={props.messages}
  14. formats={customFormats}
  15. >
  16. <HowManyThingsPrinter amount={1234567890} />
  17. </IntlProvider>
  18. </div>
Add Comment
Please, Sign In to add comment