react-server675fbba4
react-serverfilesexamplesnestjssrcappindex.tsx
examples/nestjs/src/app/index.tsxtsx255 B03909078
import Counter from "./Counter";

export default function App() {
  return (
    <html lang="en">
      <body>
        <h1>Hello World!</h1>
        <p>My random number for today is {Math.random()}</p>
        <Counter />
      </body>
    </html>
  );
}