aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/examples/with-rollup/apps/web/pages/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'examples/with-rollup/apps/web/pages/index.tsx')
-rw-r--r--examples/with-rollup/apps/web/pages/index.tsx10
1 files changed, 10 insertions, 0 deletions
diff --git a/examples/with-rollup/apps/web/pages/index.tsx b/examples/with-rollup/apps/web/pages/index.tsx
new file mode 100644
index 0000000..6ec0887
--- /dev/null
+++ b/examples/with-rollup/apps/web/pages/index.tsx
@@ -0,0 +1,10 @@
+import { Button } from "ui";
+
+export default function Web() {
+ return (
+ <div>
+ <h1>Web</h1>
+ <Button />
+ </div>
+ );
+}