Installation

im using: yarn | npm | pnpm | bunx

1. Install the package

language icon
copy icon
yarn add @brick-uikit/layout

2. Import and use

language icon

app.tsx

copy icon
import { Container } from "brick-uikit/layout";

export default function ExamplePage() {
  return (
    <Container>
      <h1>Brick uikit layout</h1>
      <p>oh, hi mom!</p>
    </Container>
  );
}