diff --git a/apps/taxes/src/modules/ui/app-card.tsx b/apps/taxes/src/modules/ui/app-card.tsx new file mode 100644 index 0000000..04477eb --- /dev/null +++ b/apps/taxes/src/modules/ui/app-card.tsx @@ -0,0 +1,16 @@ +import { PropsWithBox, Box } from "@saleor/macaw-ui/next"; + +export const AppCard = ({ children, ...p }: PropsWithBox<{}>) => { + return ( + + {children} + + ); +};