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