Select Git revision
Forked from
SOFT Core / SOFT 260 / React Redux Starter Code
4 commits behind, 5 commits ahead of the upstream repository.
-
Andrew Herold authoredAndrew Herold authored
app.js 294 B
import React from 'react';
import { Route } from 'react-router-dom';
import { CatchRateCalc } from './features/catchRateCalc/catchRateCalc.js';
export function App() {
return (
<>
<Route exact path={'/'}>
<CatchRateCalc label={'RateCalc'} />
</Route>
</>
);
}