We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97eccfe commit 6f3dbf3Copy full SHA for 6f3dbf3
src/workbench/editor/editor.scss
@@ -0,0 +1,9 @@
1
+@import '@/style/const.scss';
2
+
3
+.#{$prefix}-editor {
4
+ position: absolute;
5
+ width: 100%;
6
+ height: 100%;
7
+ // TODO temp style, just for development
8
+ background-color: #1e1e1e;
9
+}
src/workbench/editor/index.tsx
@@ -0,0 +1,15 @@
+import * as React from 'react';
+import { prefixClaName } from '@/common/className';
+import './editor.scss';
+export const Editor: React.FunctionComponent = function() {
+ return (
+ <div className={prefixClaName('editor')}>
10
+ Editor
11
+ </div>
12
+ );
13
+};
14
15
+export default Editor;
0 commit comments