We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eafad2e commit 97eccfeCopy full SHA for 97eccfe
src/workbench/panel/index.tsx
@@ -0,0 +1,15 @@
1
+import * as React from 'react';
2
+
3
+import { prefixClaName } from '@/common/className';
4
5
+import './panel.scss';
6
7
+export const Panel: React.FunctionComponent = function() {
8
+ return (
9
+ <div className={prefixClaName('panel')}>
10
+ Panel
11
+ </div>
12
+ );
13
+};
14
15
+export default Panel;
src/workbench/panel/panel.scss
@@ -0,0 +1,8 @@
+@import '@/style/const.scss';
+.#{$prefix}-panel {
+ position: absolute;
+ // TODO just for development, this attribute should be controlled by themeService
+ border-top-color: rgb(65, 67, 57);
+}
0 commit comments