aboutsummaryrefslogtreecommitdiff
path: root/demos/css-stress-test/pages/index.tsx
blob: a382a9ea000b8a94f2ecf20dce43798d33c32e96 (plain) (blame)
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>
  );
}