19 lines
438 B
JavaScript
19 lines
438 B
JavaScript
import InputAmount from './components/inputs/InputAmount';
|
|
import InputPrice from './components/inputs/InputPrice';
|
|
|
|
function App(props) {
|
|
// const { } = props;
|
|
|
|
return (
|
|
<div className="container py-5">
|
|
<InputAmount />
|
|
<InputPrice />
|
|
<InputPrice currency="€" price={10.5} />
|
|
<InputPrice currency="$" price={19.5} />
|
|
<InputPrice currency="¥" price={21.5} />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default App;
|