feat: CellForceWidth component.

This commit is contained in:
a.bouhuolia
2021-11-01 09:34:58 +02:00
parent 613454a862
commit 24bd754c72
8 changed files with 66 additions and 4 deletions

View File

@@ -1,7 +1,7 @@
import intl from 'react-intl-universal';
export function FormattedMessage({ id }) {
return intl.get(id);
export function FormattedMessage({ id, values }) {
return intl.get(id, values);
}
export function FormattedHTMLMessage({ ...args }) {