Skip to content

Commit

Permalink
feat: init the menu bar of workbench
Browse files Browse the repository at this point in the history
  • Loading branch information
wewoor committed Sep 16, 2020
1 parent 558843e commit db03bc5
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/workbench/menuBar/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import * as React from 'react';

import { prefixClaName } from '@/common/className';

import './menuBar.scss';

export const MenuBar: React.FunctionComponent = function() {
return (
<div className={prefixClaName('menuBar')}>
MenuBar
</div>
);
};

export default MenuBar;
10 changes: 10 additions & 0 deletions src/workbench/menuBar/menuBar.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
@import '@/style/const.scss';

.#{$prefix}-menuBar {
position: absolute;

.left {
width: 48px;
height: 35px;
}
}

0 comments on commit db03bc5

Please sign in to comment.