Skip to content

Commit 558843e

Browse files
committed
feat: init the activity bar of workbench
1 parent 6f3dbf3 commit 558843e

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed
+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
@import '@/style/const.scss';
2+
3+
.#{$prefix}-activityBar {
4+
position: absolute;
5+
width: 48px;
6+
height: 100%;
7+
z-index: 1;
8+
// TODO temp style, just for development
9+
background-color: rgb(51, 51, 51);
10+
}

src/workbench/activityBar/index.tsx

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import * as React from 'react';
2+
3+
import { prefixClaName } from '@/common/className';
4+
5+
import './activityBar.scss';
6+
7+
export const ActivityBar: React.FunctionComponent = function() {
8+
return (
9+
<div className={prefixClaName('activityBar')}>
10+
ActivityBar
11+
</div>
12+
);
13+
};
14+
15+
export default ActivityBar;

0 commit comments

Comments
 (0)