From 2ef11a99923b827e066c27299c71580b0cfaa7d3 Mon Sep 17 00:00:00 2001 From: Vishnu K R <56185289+Vishnukr1101@users.noreply.github.com> Date: Mon, 20 May 2024 13:39:44 +0530 Subject: [PATCH] Update react.md fixing error : export 'LexicalErrorBoundary' (imported as 'LexicalErrorBoundary') was not found in '@lexical/react/LexicalErrorBoundary' (possible exports: default) --- packages/lexical-website/docs/getting-started/react.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/lexical-website/docs/getting-started/react.md b/packages/lexical-website/docs/getting-started/react.md index 18ee264586e..b5ec59a2086 100644 --- a/packages/lexical-website/docs/getting-started/react.md +++ b/packages/lexical-website/docs/getting-started/react.md @@ -37,7 +37,7 @@ import {LexicalComposer} from '@lexical/react/LexicalComposer'; import {RichTextPlugin} from '@lexical/react/LexicalRichTextPlugin'; import {ContentEditable} from '@lexical/react/LexicalContentEditable'; import {HistoryPlugin} from '@lexical/react/LexicalHistoryPlugin'; -import {LexicalErrorBoundary} from '@lexical/react/LexicalErrorBoundary'; +import LexicalErrorBoundary from '@lexical/react/LexicalErrorBoundary'; const theme = { // Theme styling goes here