Select Git revision
Forked from
SOFT Core / SOFT 260 / React Redux Starter Code
4 commits behind, 3 commits ahead of the upstream repository.
-
Gabriel Clark authoredGabriel Clark authored
app.js 440 B
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 (
<>
<UnitSelector />
<NumberInputField />
<h1>Ouput Section</h1>
<UnitSelector />
<EndingNumberOutput />
</>
);
}