0.0.14 • Published 3 months ago

mint.ts v0.0.14

Weekly downloads
-
License
MIT
Repository
github
Last release
3 months ago

🍃 mint

npm version

Frontend framework

Work in progress - not ready for production 🚧

const Counter = cmp(($) => {
  const count = $.state(0);
  const doubleCount = $.computed(() => count.value * 2);

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

3 months ago

0.0.12

3 months ago

0.0.13

3 months ago

0.0.14

3 months ago

0.0.10

6 months ago

0.0.9

7 months ago

0.0.8

7 months ago

0.0.7

7 months ago

0.0.6

8 months ago

0.0.5

9 months ago

0.0.3

11 months ago

0.0.2

11 months ago

0.0.1

11 months ago