diff options
Diffstat (limited to 'demos/css-stress-test')
-rw-r--r-- | demos/css-stress-test/pages/[id]/boom.tsx | 9 | ||||
-rw-r--r-- | demos/css-stress-test/pages/plain/nested.tsx | 9 |
2 files changed, 18 insertions, 0 deletions
diff --git a/demos/css-stress-test/pages/[id]/boom.tsx b/demos/css-stress-test/pages/[id]/boom.tsx new file mode 100644 index 000000000..05f9f34c4 --- /dev/null +++ b/demos/css-stress-test/pages/[id]/boom.tsx @@ -0,0 +1,9 @@ +import { Main } from "../../src/main"; + +export default function IndexRoute() { + return ( + <div> + <Main productName={"Boom id"} /> + </div> + ); +} diff --git a/demos/css-stress-test/pages/plain/nested.tsx b/demos/css-stress-test/pages/plain/nested.tsx new file mode 100644 index 000000000..23c7607f1 --- /dev/null +++ b/demos/css-stress-test/pages/plain/nested.tsx @@ -0,0 +1,9 @@ +import { Main } from "../../src/main"; + +export default function IndexRoute() { + return ( + <div> + <Main productName={"nested!"} /> + </div> + ); +} |