diff --git a/examples/with-rollup/apps/web/app/layout.tsx b/examples/with-rollup/apps/web/app/layout.tsx new file mode 100644 index 0000000000000..225b6038d7fbf --- /dev/null +++ b/examples/with-rollup/apps/web/app/layout.tsx @@ -0,0 +1,11 @@ +export default function RootLayout({ + children, +}: { + children: React.ReactNode; +}) { + return ( + + {children} + + ); +} diff --git a/examples/with-rollup/apps/web/app/page.tsx b/examples/with-rollup/apps/web/app/page.tsx new file mode 100644 index 0000000000000..0e3cce1569ff6 --- /dev/null +++ b/examples/with-rollup/apps/web/app/page.tsx @@ -0,0 +1,10 @@ +import { Button, Header } from "ui"; + +export default function Page() { + return ( + <> +
+