Update Context.tsx (#5102)

This commit is contained in:
Joel 2024-05-09 14:47:28 +01:00 committed by GitHub
parent ca4f13461e
commit 3a21bc1d2f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -18,7 +18,7 @@ export const EditorConsumer = EditorContext.Consumer
export const useCurrentEditor = () => useContext(EditorContext)
export type EditorProviderProps = {
children: ReactNode;
children?: ReactNode;
slotBefore?: ReactNode;
slotAfter?: ReactNode;
} & Partial<EditorOptions>