We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d113de2 commit 7bfc566Copy full SHA for 7bfc566
src/FormattedNumber.js
@@ -15,6 +15,7 @@ const FormattedNumber = props => {
15
maximumFractionDigits: props.maximumFractionDigits,
16
minimumSignificantDigits: props.minimumSignificantDigits,
17
maximumSignificantDigits: props.maximumSignificantDigits,
18
+ value: props.value,
19
};
20
21
return (
@@ -36,6 +37,7 @@ FormattedNumber.propTypes = {
36
37
maximumFractionDigits: PropTypes.any,
38
minimumSignificantDigits: PropTypes.any,
39
maximumSignificantDigits: PropTypes.any,
40
+ value: PropTypes.any,
41
42
43
export default FormattedNumber;
0 commit comments