haikyuu / haikyuu/benchmark

try with solidjs

Open
#1 2 comments 0 reactions 0 assignees View on GitHub
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.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.