suika-ui
v1.5.4
Published
Suika UI is a lightweight UI library for the Suika framework
Downloads
12
Readme
Suika UI (WIP) is a lightweight UI library for the Suika framework.
Installation
You can use suika-ui
as a package on npm
npm install suika@latest suika-ui@latest
Documentation
Please follow the documentation at jonwatkins.github.io/suika/.
Usage
import { Component, mount, h } from "suika";
import { Card, CardHeader, CardTitle, CardBody, Button } from "suika-ui";
const root = document.getElementBytId("app");
class App extends Component {
state = {
count: 0,
};
inc() {
this.state.count++;
}
render() {
return (
<Card>
<CardHeader className="bg-light">
<CardTitle is="h2">
Count: {this.state.value.count.toString()}
</CardTitle>
</CardHeader>
<CardBody>
<Button onclick={() => this.state.value.count++}>Inc</Button>
</CardBody>
</Card>
);
}
}
mount(App, root);
License
Copyright (c) 2023-present, Jon Watkins