0.0.8 • Published 2 years ago

smlr v0.0.8

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

npm version npm bundle size

Frontend framework

Work in progress - not ready for production 🚧

import { render, cp, htm, signal, computed } from "smlr";

const Counter = cp(() => {
  const count = signal(0);
  const doubleCount = computed(() => count.value * 2);

  return [
    htm("div", { node: ["Count is: ", () => count.value] }),
    htm("div", { node: ["Double count is: ", () => doubleCount.value] }),
    htm("button", {
      onClick: () => {
        count.value++;
      },
      node: "+",
    }),
  ];
});

render(Counter(), container);
0.0.8

2 years ago

0.0.7

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.6

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago