React Router with Server Components and Syntax Highlighting

A simple guide to setting up React Router with Server Components for modern React apps. We use Code Hike for syntax highlighting.

export async function HomePage() {
const data = await fetchData()
return (
<div>
<h1>{data.title}</h1>
<p>{data.description}</p>
</div>
)
}

More Syntax Highlighting features on: https://xyd.dev