Skip to content

Commit

Permalink
feat: add welcome page
Browse files Browse the repository at this point in the history
  • Loading branch information
wewoor committed Oct 22, 2020
1 parent 600ba8e commit d49731e
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/workbench/editor/welcome/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { prefixClaName } from 'mo/common/className';
import * as React from 'react';
import './style.scss';

export default function Welcome() {
return (
<div className={prefixClaName('welcome')}>
Welcome Page.
</div>
);
}
9 changes: 9 additions & 0 deletions src/workbench/editor/welcome/style.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
@import 'mo/style/const';

#{prefix('welcome')} {
align-items: center;
display: flex;
justify-content: center;
text-align: center;
width: 100%;
}

0 comments on commit d49731e

Please sign in to comment.