Skip to content
Snippets Groups Projects
Select Git revision
  • eab82bb759f247f239b3b1f1d82414672a5e1958
  • master default
  • develop
  • git-fixes
  • 4.1_templates-symlink
  • 4.0_templates
6 results

getUID.php

Blame
  • 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>
        </>
      );
    }