diff options
Diffstat (limited to 'examples/css-stress-test/pages/two.tsx')
-rw-r--r-- | examples/css-stress-test/pages/two.tsx | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/examples/css-stress-test/pages/two.tsx b/examples/css-stress-test/pages/two.tsx new file mode 100644 index 000000000..248385591 --- /dev/null +++ b/examples/css-stress-test/pages/two.tsx @@ -0,0 +1,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> + ); +} |