Skip to content

Commit 7bfc566

Browse files
committed
Pass through value
1 parent d113de2 commit 7bfc566

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/FormattedNumber.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ const FormattedNumber = props => {
1515
maximumFractionDigits: props.maximumFractionDigits,
1616
minimumSignificantDigits: props.minimumSignificantDigits,
1717
maximumSignificantDigits: props.maximumSignificantDigits,
18+
value: props.value,
1819
};
1920

2021
return (
@@ -36,6 +37,7 @@ FormattedNumber.propTypes = {
3637
maximumFractionDigits: PropTypes.any,
3738
minimumSignificantDigits: PropTypes.any,
3839
maximumSignificantDigits: PropTypes.any,
40+
value: PropTypes.any,
3941
};
4042

4143
export default FormattedNumber;

0 commit comments

Comments
 (0)