react-server675fbba4
react-serverfilesexamplestyped-routerAbout.tsx
examples/typed-router/About.tsxtsx379 B4cb15584
export default function About() {
  return (
    <div>
      <h2>About</h2>
      <p>
        This page is a server-rendered route created with{" "}
        <code>{'createRoute("/about", { exact: true })'}</code>.
      </p>
      <p>
        Since this is a React Server Component, it renders on the server with
        zero client-side JavaScript.
      </p>
    </div>
  );
}