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