35 lines
1,002 B
TypeScript
35 lines
1,002 B
TypeScript
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<CountryTaxesParams>
|
|
> = ({ match }) => <CountryTaxesComponent code={match.params.code} />;
|
|
|
|
const Component = () => {
|
|
const intl = useIntl();
|
|
|
|
return (
|
|
<>
|
|
<WindowTitle title={intl.formatMessage(sectionNames.taxes)} />
|
|
<Switch>
|
|
<Route exact path={countryListPath} component={CountryList} />
|
|
<Route
|
|
exact
|
|
path={countryTaxRatesPath(":code")}
|
|
component={CountryTaxes}
|
|
/>
|
|
</Switch>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default Component;
|