> ## 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.

# 블록 편집기

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

사용자는 [BlockNote](https://www.blocknotejs.org/)의 블록 기반 리치 텍스트 편집기를 사용해 콘텐츠 블록을 편집하고 볼 수 있습니다.

<Tabs>
  <Tab title="사용법">
    ```jsx theme={null}
    import { useBlockNote } from "@blocknote/react";
    import { BlockEditor } from "@/ui/input/editor/components/BlockEditor";

    export const MyComponent = () => {
      const BlockNoteEditor = useBlockNote();

      return <BlockEditor editor={BlockNoteEditor} />;
    };
    ```
  </Tab>

  <Tab title="프로퍼티">
    | 프로퍼티 | 유형                | 설명                |
    | ---- | ----------------- | ----------------- |
    | 편집기  | `BlockNoteEditor` | 블록 편집기 인스턴스 또는 구성 |
  </Tab>
</Tabs>
