> ## Documentation Index
> Fetch the complete documentation index at: https://docs.twenty.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Breadcrumb

<Frame>
  <img src="https://mintcdn.com/twenty/JIRRbviz5phT8G2L/images/user-guide/fields/field.png?fit=max&auto=format&n=JIRRbviz5phT8G2L&q=85&s=d05539b92dcec1953026ba95f2bfe07d" alt="헤더" width="1440" height="680" data-path="images/user-guide/fields/field.png" />
</Frame>

브레드크럼 내비게이션 바를 렌더링합니다.

<Tabs>
  <Tab title="사용법">
    ```jsx theme={null}
    import { BrowserRouter } from "react-router-dom";
    import { Breadcrumb } from "@/ui/navigation/bread-crumb/components/Breadcrumb";

    export const MyComponent = () => {
      const breadcrumbLinks = [
        { children: "Home", href: "/" },
        { children: "Category", href: "/category" },
        { children: "Subcategory", href: "/category/subcategory" },
        { children: "Current Page" },
      ];

      return (
        <BrowserRouter>
          <Breadcrumb className links={breadcrumbLinks} />
        </BrowserRouter>
        )
    };
    ```
  </Tab>

  <Tab title="프로퍼티">
    | 프로퍼티   | 유형  | 설명                                                                                                     |
    | ------ | --- | ------------------------------------------------------------------------------------------------------ |
    | 클래스 네임 | 문자열 | 추가 스타일을 위한 선택적 클래스 이름                                                                                  |
    | 링크     | 배열  | 각 브레드크럼 링크를 나타내는 객체의 배열. 각 객체는 `children` 속성(링크의 텍스트 콘텐츠)과 선택적 `href` 속성(링크를 클릭할 때 이동할 URL)을 가지고 있습니다. |
  </Tab>
</Tabs>
