saleor-apps-redis_apl/apps/taxes/src/modules/avatax/ui/avatax-configuration.tsx

11 lines
233 B
TypeScript
Raw Normal View History

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