This specific shape causes an infinite loop
https://stackblitz.com/edit/solidjs-templates-ofppjt44?file=src%2Froutes%2FHome.tsx
<Loading fallback="loading…">
<Errored>
<Child />
</Errored>
</Loading>
function Child() {
const test = createMemo(getPosts);
return <>{test()[0].id}</>;
}
This specific shape causes an infinite loop
https://stackblitz.com/edit/solidjs-templates-ofppjt44?file=src%2Froutes%2FHome.tsx