summaryrefslogtreecommitdiff
path: root/examples/framework-multiple/src/components/SolidCounter.tsx
blob: 63fe5cb115345d27ee7e3f81f3894347f67b0b2b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { createSignal } from 'solid-js';

/** a counter written with Solid */
export default function SolidCounter({ children }) {
  const [count, setCount] = createSignal(0);
  const add = () => setCount(count() + 1);
  const subtract = () => setCount(count() - 1);

  return (
    <>
      <div id="solid" class="counter">
        <button onClick={subtract}>-</button>
        <pre>{count()}</pre>
        <button onClick={add}>+</button>
      </div>
      <div class="counter-message">{children}</div>
    </>
  );
}