the RomanNumeral React Component displays a Roman Numeral converted from the given decimalNumber prop.
<RomanNumeral decimalNumber={36} />
this will output the following:
<p>XXXVI</p>
the decimalNumber prop is required and it must be a number.
use yarn start to start the dev server
use yarn test to run the unit tests