react-roman
v2.0.0
Published
Display your numbers in the form of roman numerals
Downloads
185
Maintainers
Readme
react-roman
Display numbers in the form of roman numerals.
Install
yarn add react-roman
Usage
import React from 'react'
import Roman from 'react-roman'
export default () => <Roman>514</Roman>
You can also make usage of the internal romanize
function if you so desire.
import React, { Component } from 'react'
import { romanize } from 'react-roman'
export default class App extends Component {
onChange = event => {
console.log(romanize(event.target.value))
}
render = () => {
<div>
<h1>When was Juluis Caesar assasinated?</h1>
<input type='number' onChange={this.onChange} />
</div>
}
}