import * as React from "react"; import { Route, RouteComponentProps, Switch } from "react-router-dom"; import { WindowTitle } from "../components/WindowTitle"; import i18n from "../i18n"; import { countryListPath, countryTaxRatesPath } from "./urls"; import CountryList from "./views/CountryList"; import CountryTaxesComponent, { CountryTaxesParams } from "./views/CountryTaxes"; const CountryTaxes: React.StatelessComponent< RouteComponentProps > = ({ match }) => ; const Component = () => ( <> ); export default Component;