Select Git revision
Forked from
SOFT Core / SOFT 260 / React Redux Starter Code
4 commits behind, 7 commits ahead of the upstream repository.
-
Gabriel Clark authoredGabriel Clark authored
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 />
</>
);
}