aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/src/editor/EditorArea.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'subprojects/frontend/src/editor/EditorArea.tsx')
-rw-r--r--subprojects/frontend/src/editor/EditorArea.tsx6
1 files changed, 2 insertions, 4 deletions
diff --git a/subprojects/frontend/src/editor/EditorArea.tsx b/subprojects/frontend/src/editor/EditorArea.tsx
index 1c9b031b..7c5ac5fb 100644
--- a/subprojects/frontend/src/editor/EditorArea.tsx
+++ b/subprojects/frontend/src/editor/EditorArea.tsx
@@ -5,7 +5,7 @@ import React, { useCallback, useEffect } from 'react';
5import type EditorStore from './EditorStore'; 5import type EditorStore from './EditorStore';
6import EditorTheme from './EditorTheme'; 6import EditorTheme from './EditorTheme';
7 7
8function EditorArea({ 8export default observer(function EditorArea({
9 editorStore, 9 editorStore,
10}: { 10}: {
11 editorStore: EditorStore; 11 editorStore: EditorStore;
@@ -32,6 +32,4 @@ function EditorArea({
32 ref={editorParentRef} 32 ref={editorParentRef}
33 /> 33 />
34 ); 34 );
35} 35});
36
37export default observer(EditorArea);