import { createSignal } from "solid-js"; import { render } from "solid-js/web"; const App = () => { const [count, setCount] = createSignal(0); const inc = (by = 1) => setCount(count() + by); return ; }; render(App, document.getElementById("app")!);