You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
492 B
22 lines
492 B
6 years ago
|
import React, { PureComponent } from 'react'
|
||
|
import PropTypes from 'prop-types'
|
||
|
import { hexToDecimal } from '../../helpers/conversions.util'
|
||
|
|
||
|
export default class HexToDecimal extends PureComponent {
|
||
|
static propTypes = {
|
||
|
className: PropTypes.string,
|
||
|
value: PropTypes.string,
|
||
|
}
|
||
|
|
||
|
render () {
|
||
|
const { className, value } = this.props
|
||
|
const decimalValue = hexToDecimal(value)
|
||
|
|
||
|
return (
|
||
|
<div className={className}>
|
||
|
{ decimalValue }
|
||
|
</div>
|
||
|
)
|
||
|
}
|
||
|
}
|