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

# Block-Editor

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

Verwendet einen blockbasierten Rich-Text-Editor von [BlockNote](https://www.blocknotejs.org/), um Benutzern das Bearbeiten und Anzeigen von Inhaltsblöcken zu ermöglichen.

<Tabs>
  <Tab title="&#x22;Verwendung&#x22;">
    ```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="&#x22;Eigenschaften&#x22;">
    | Props  | Typ               | Beschreibung                                |
    | ------ | ----------------- | ------------------------------------------- |
    | Editor | `BlockNoteEditor` | Instanz oder Konfiguration des Blockeditors |
  </Tab>
</Tabs>
