Skip to content

Commit 2ff9c9e

Browse files
committed
feat: init the settings of workbench
1 parent abcae7e commit 2ff9c9e

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

src/workbench/settings/index.tsx

+13
Original file line numberDiff line numberDiff line change
@@ -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

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
@import '@/style/const.scss';
2+
3+
.#{$prefix}-settings {
4+
position: absolute;
5+
}

0 commit comments

Comments
 (0)