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