We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 403ef36 commit abcae7eCopy full SHA for abcae7e
src/workbench/statusBar/index.tsx
@@ -0,0 +1,15 @@
1
+import * as React from 'react';
2
+
3
+import { prefixClaName } from '@/common/className';
4
5
+import './statusBar.scss';
6
7
+export const StatusBar: React.FunctionComponent = function() {
8
+ return (
9
+ <div className={prefixClaName('statusBar')}>
10
+ StatusBar
11
+ </div>
12
+ );
13
+};
14
15
+export default StatusBar;
src/workbench/statusBar/statusBar.scss
@@ -0,0 +1,12 @@
+@import '@/style/const.scss';
+.#{$prefix}-statusBar {
+ position: absolute;
+ height: 22px;
+ width: 100%;
+ bottom: 0;
+ z-index: 1;
+ // TODO temp style, just for development
+ background-color: rgb(0, 122, 204);
+ color: rgb(255, 255, 255);
+}
0 commit comments