
* feat: ✨ add empty packages/ui * feat: ⚗️ move taxes app-grid to packages/ui * build: ⬆️ upgrade macaw-ui in packages/ui * add app sdk * feat: ✨ add basic breadcrumbs component * refactor: ♻️ simplify breadcrumbs api * Update packages/ui/src/breadcrumbs.tsx Co-authored-by: Lukasz Ostrowski <lukasz.ostrowski@saleor.io> * refactor: 🔥 next-env.d.ts * refactor: ♻️ address breadcrumbs feedback * chore: 🔥 remove eslint disable * build: 👷 add changeset --------- Co-authored-by: Lukasz Ostrowski <lukasz.ostrowski@saleor.io>
8 lines
225 B
TypeScript
8 lines
225 B
TypeScript
import { Box } from "@saleor/macaw-ui/next";
|
|
import { PropsWithChildren } from "react";
|
|
|
|
type ExampleProps = PropsWithChildren<{}>;
|
|
|
|
export const Example = ({ children }: ExampleProps) => {
|
|
return <Box>{children}</Box>;
|
|
};
|