@benev/slate
Version:
frontend web stuff
11 lines • 356 B
JavaScript
import { slate } from "../frontend.js";
import { html } from "../../nexus/html.js";
export const SlateOxygen = slate.lightComponent(use => {
const count = use.signal(256);
const decrease = () => count.value -= 8;
return html `
<span>${count}</span>
<button @click=${decrease}>oxygen</button>
`;
});
//# sourceMappingURL=slate-oxygen.js.map