
* 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
10 lines
233 B
TypeScript
10 lines
233 B
TypeScript
import { AvataxConfigurationForm } from "./avatax-configuration-form";
|
|
|
|
export const AvataxConfiguration = () => {
|
|
return (
|
|
<section>
|
|
<h2>Avatax configuration</h2>
|
|
<AvataxConfigurationForm />
|
|
</section>
|
|
);
|
|
};
|