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