36 lines
482 B
TypeScript
36 lines
482 B
TypeScript
// @ts-nocheck
|
|
import {
|
|
Children,
|
|
Content,
|
|
Main,
|
|
Model,
|
|
Prop,
|
|
View,
|
|
Watch,
|
|
button,
|
|
div,
|
|
input,
|
|
insertChildren,
|
|
use,
|
|
render,
|
|
} from '@openinula/next';
|
|
|
|
|
|
function MyComp() {
|
|
let count = 0;
|
|
const db = count * 2;
|
|
|
|
return (
|
|
<>
|
|
<h1 className="123">Hello dlight fn comp</h1>
|
|
<section>
|
|
count: {count}, double is: {db}
|
|
<button onClick={() => (count += 1)}>Add</button>
|
|
</section>
|
|
</>
|
|
);
|
|
}
|
|
|
|
|
|
render('main', MyComp);
|