blob: 248385591a090ccb8305ad49ffff7de0aa54e41e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import { Main } from "../src/main";
export function getInitialProps() {
return {};
}
export default function IndexRoute() {
return (
<div>
<Main productName={"Page 2! Next.js (Webpack 5)"} />
</div>
);
}
|