Skip to content

Commit d49731e

Browse files
committed
feat: add welcome page
1 parent 600ba8e commit d49731e

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed
+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import { prefixClaName } from 'mo/common/className';
2+
import * as React from 'react';
3+
import './style.scss';
4+
5+
export default function Welcome() {
6+
return (
7+
<div className={prefixClaName('welcome')}>
8+
Welcome Page.
9+
</div>
10+
);
11+
}
+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
@import 'mo/style/const';
2+
3+
#{prefix('welcome')} {
4+
align-items: center;
5+
display: flex;
6+
justify-content: center;
7+
text-align: center;
8+
width: 100%;
9+
}

0 commit comments

Comments
 (0)