1.0.9 • Published 3 years ago

translate-romawi-int v1.0.9

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years ago

Translate Romawi Int

Install dengan perintah berikut

Install dengan cara berikut npm i translate-romawi-int atau npm install translate-romawi-int@latest

Gunakan function dengan cara

import React, { FunctionComponent } from "react";
import { IntToRoman, RomanToInt } from "translate-romawi-int";

interface IndexProps { }

const Index: FunctionComponent<IndexProps> = () => {
  const romawi = RomanToInt("XLIII")
  const num = IntToRoman(43)
  console.log(romawi, num);

   return (
    <div>
      <div>{romawi}</div>
      <div>{num}</div>
    </div>
   )
    
}
export default Index;

created by wahyu agus arifin - owner itpohgero.com

1.0.9

3 years ago

1.0.8

3 years ago

1.0.7

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago