aboutsummaryrefslogtreecommitdiff
path: root/demos/simple-react/pages/index.tsx
blob: b3566cdf69d2178184a2a629dc6abc62a14a1b47 (plain) (blame)
1
2
3
4
5
6
7
8
9
import { Main } from "../src/main";

export function getInitialProps() {
  return {};
}

export default function IndexRoute() {
  return <Main productName={"Next.js (Webpack 5)"} />;
}