React implementation of numeral.js
npm install react-numeraljsx
import React from 'react';
import Numeral from 'react-numeral';
class App extends React.Component {
render() {
return (
value={100000}
format={"0,0"}
/>
);
}
}
`
Props
- value - The number you want to format
- format` - The format (see here for the complete list )