Skip to content

Commit

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

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

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

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

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

0 comments on commit 2ff9c9e

Please sign in to comment.