refactor: 🔥 remove usage in taxes

This commit is contained in:
Adrian Pilarczyk 2023-05-16 14:56:16 +02:00
parent be54c71a23
commit 8d72b19471
3 changed files with 1 additions and 10 deletions

View file

@ -17,7 +17,7 @@ const config = {
experimental: {
esmExternals: true,
},
transpilePackages: ["@saleor/apps-shared", "@saleor/apps-ui"],
transpilePackages: ["@saleor/apps-shared"],
};
module.exports = withSentryConfig(

View file

@ -22,7 +22,6 @@
"@material-ui/lab": "4.0.0-alpha.61",
"@saleor/app-sdk": "0.38.0",
"@saleor/apps-shared": "workspace:*",
"@saleor/apps-ui": "workspace:*",
"@saleor/macaw-ui": "^0.7.2",
"@sentry/nextjs": "^7.45.0",
"@tanstack/react-query": "^4.19.1",

View file

@ -1,8 +0,0 @@
import { Box } from "@saleor/macaw-ui/next";
import { PropsWithChildren } from "react";
type ExampleProps = PropsWithChildren<{}>;
export const Example = ({ children }: ExampleProps) => {
return <Box>{children}</Box>;
};