try with solidjs
Open
- Dominant language
- JavaScript
- Stars
- 4
- Forks
- 0
- PR merge metrics
- No merged PRs in 30d
Description
```jsx
import { createSignal } from "solid-js";
import { render } from "solid-js/web";
const items = Array.from(Array(10000).keys());
function AppSolid() {
const [count, setCount] = createSignal(1);
return (
Hello Solid
{(item, i) =>
setCount(count() + 1)} key={item}>
{item * count()}
}
)
};
render(() => , document.getElementById("solid"));
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.