Skip to content

Commit

Permalink
refactor: import APP_ID from id.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
wewoor committed Nov 20, 2020
1 parent ec2579d commit cbc88c5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/workbench/workbench.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import { MenuBarView } from 'mo/workbench/menuBar';
import { ActivityBarView } from 'mo/workbench/activityBar';
import { StatusBarView } from 'mo/workbench/statusBar';
import Panel from 'mo/workbench/panel';
import { ID_APP } from 'mo/common/id';

export interface IWorkbench {}

Expand Down Expand Up @@ -46,7 +47,7 @@ export function MainBench(props: IMainBench) {
export function Workbench(props: IWorkbench) {
return (
<div
id="molecule"
id={ID_APP}
className={classNames(APP_PREFIX, Utils.isMacOs() ? 'mac' : '')}
>
<div className={prefixClaName('workbench')}>
Expand Down

0 comments on commit cbc88c5

Please sign in to comment.