Skip to content
Snippets Groups Projects
Select Git revision
  • main default protected
1 result

app.js

Blame
  • app.js 573 B
    import { Route } from 'react-router-dom';
    import { EndingNumberOutput } from './features/ending-number-output/endingNumberOutput.js';
    import { NumberInputField } from './features/number-input-field/numberInputField.js';
    import { UnitSelector } from './features/unit-selector/unitSelector.js';
    
    export function App() {
      return (
        <>
          <Route exact path={'/'}>
          </Route>
          <UnitSelector id="inputUnitSelector"/>
          <NumberInputField />
          <h1>Ouput Section</h1>
          <UnitSelector id="outputUnitSelector"/>
          <EndingNumberOutput />
        </>
      );
    }