0 votes
in ReactJS by

What are the two ways of formatting in React Intl?

1 Answer

0 votes
by

The library provides two ways to format strings, numbers, and dates: react components or an API.

<FormattedMessage
  id={'account'}
  defaultMessage={'The amount is less than minimum balance.'}
/>
const messages = defineMessages({
  accountMessage: {
    id: 'account',
    defaultMessage: 'The amount is less than minimum balance.',
  }
})

formatMessage(messages.accountMessage)
...