Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion content/blog/redesigning-editor-api/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Up to this point we've been using a combination of config objects (e.g. `props.U

# Getting rid of render props

We want you to be able not only to render custom components (e.g. custom footer), but also modify the default ones. Previously we were exposing extension points through render props. Render props work fine, but were envisioning an API where you could just render everything as children of the Excalidraw component, something like this:
We want you to be able not only to render custom components (e.g. custom footer), but also modify the default ones. Previously we were exposing extension points through render props. Render props work fine, but we're envisioning an API where you could just render everything as children of the Excalidraw component, something like this:

```jsx
import { Excalidraw, MainMenu, Footer } from '@excalidraw/excalidraw';
Expand Down