mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-14 03:40:31 +00:00
9 lines
225 B
JavaScript
9 lines
225 B
JavaScript
import intl from 'react-intl-universal';
|
|
|
|
export function FormattedMessage({ id, values }) {
|
|
return intl.get(id, values);
|
|
}
|
|
|
|
export function FormattedHTMLMessage({ ...args }) {
|
|
return intl.formatHTMLMessage({ ...args })
|
|
} |