import React from 'react'; import {Route, Switch} from 'react-router-dom'; import PokemonShow from './pokemon/show'; import PokemonIndex from './pokemon/index'; import NotFound from './not_found'; function Pokemon({match}) { return ( <> ); } export default Pokemon;