saleor-dashboard/src/taxes/urls.ts

10 lines
292 B
TypeScript
Raw Normal View History

2019-08-09 10:26:22 +00:00
import urlJoin from "url-join";
2019-06-19 14:40:52 +00:00
export const taxSection = "/taxes/";
export const countryListPath = taxSection;
export const countryListUrl = taxSection;
export const countryTaxRatesPath = (code: string) => urlJoin(taxSection, code);
export const countryTaxRatesUrl = countryTaxRatesPath;