* Update simple demo
This commit is contained in:
dntzhang 2019-07-20 19:27:31 +08:00
parent ea84453d97
commit 61c62bf5a0
3 changed files with 7 additions and 1 deletions

View File

@ -1173,6 +1173,11 @@
return Omi.h(
'div',
null,
Omi.h(
'div',
null,
'Hello Omis'
),
Omi.h(Counter, null)
);
};

File diff suppressed because one or more lines are too long

View File

@ -28,6 +28,7 @@ Counter.store = _ => {
const App = (props, store) => {
return <div>
<div>Hello Omis</div>
<Counter></Counter>
</div>
}