Skip to content

Commit e6b7b70

Browse files
committed
fix(slipt-pane): import Pane module directly
1 parent 8585549 commit e6b7b70

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/workbench/editor/editor.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import * as React from 'react';
22
import { memo } from 'react';
33
import SplitPane from 'react-split-pane';
4-
import * as Pane from 'react-split-pane/lib/Pane';
4+
import Pane from 'react-split-pane/lib/Pane';
55
import { IEditor, IEditorGroup } from 'mo/model';
66

77
import EditorGroup from './group';

src/workbench/editor/index.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import 'reflect-metadata';
12
import { connect } from 'mo/react';
23
import { container } from 'tsyringe';
34
import { IEditor } from 'mo/model';

0 commit comments

Comments
 (0)