We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abcae7e commit 2ff9c9eCopy full SHA for 2ff9c9e
src/workbench/settings/index.tsx
@@ -0,0 +1,13 @@
1
+import * as React from 'react';
2
+
3
+import { prefixClaName } from '@/common/className';
4
5
+export const Panel: React.FunctionComponent = function() {
6
+ return (
7
+ <div className={prefixClaName('panel')}>
8
+ Panel
9
+ </div>
10
+ );
11
+};
12
13
+export default Panel;
src/workbench/settings/settings.scss
@@ -0,0 +1,5 @@
+@import '@/style/const.scss';
+.#{$prefix}-settings {
+ position: absolute;
+}
0 commit comments