1 2 3 4 5 6 7 8 9 10 11 12 13 14
import { Main } from "../src/main"; import { Button } from "../src/components/button"; export function getInitialProps() { return {}; } export default function IndexRoute() { return ( <div> <Main productName={"Next.js (Webpack 5)"} />;<Button>hello</Button> </div> ); }