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

# Blok Düzenleyici

<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="Başlık" width="1440" height="680" data-path="images/user-guide/api/api.png" />
</Frame>

Kullanıcıların içerik bloklarını düzenleyip görüntüleyebilmeleri için [BlockNote](https://www.blocknotejs.org/) tarafından sağlanan blok tabanlı zengin metin düzenleyici kullanır.

<Tabs>
  <Tab title="Kullanım">
    ```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="Özellikler">
    | Özellikler  | Tür               | Açıklama                                    |
    | ----------- | ----------------- | ------------------------------------------- |
    | düzenleyici | `BlockNoteEditor` | Blok düzenleyici örneği veya yapılandırması |
  </Tab>
</Tabs>
