saleor-apps-redis_apl/apps/taxes/src/modules/avatax/ui/avatax-configuration.tsx
Adrian Pilarczyk 56a4dbb3a3
refactor: 🚚 split avatax & taxjar into separate services (#264)
* refactor: ♻️ split into services

* docs: 💡 add comment about joining providers

* fix: 🐛 change name from avalara to avatax

* build: 👷 add changeset

* fix: 🐛 move return into catch
2023-03-10 13:04:25 +01:00

10 lines
233 B
TypeScript

import { AvataxConfigurationForm } from "./avatax-configuration-form";
export const AvataxConfiguration = () => {
return (
<section>
<h2>Avatax configuration</h2>
<AvataxConfigurationForm />
</section>
);
};