Rezact / Rezact

A JavaScript Framework/Library (call it what you want) that blends the best of svelte, solid, react, and many others.

Home Page:https://rezact.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FEATURE: Async Function Components

zachlankton opened this issue · comments

async function PostPage(props) {
  const $post = await getPost(props.id);
  
  return <h1>{$post.title}</h1>
}