Skip to content
Snippets Groups Projects
Select Git revision
  • 7e9891cda0d423f7d93a371ff8853cdb161df8fd
  • master default protected
2 results

app.js

Blame
  • Forked from SOFT Core / SOFT 260 / React Redux Starter Code
    Source project has a limited visibility.
    app.js 290 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={'Taps'} />
          </Route>
        </>
      );
    }