aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/examples/with-npm/packages/ui/Button.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'examples/with-npm/packages/ui/Button.tsx')
-rw-r--r--examples/with-npm/packages/ui/Button.tsx5
1 files changed, 5 insertions, 0 deletions
diff --git a/examples/with-npm/packages/ui/Button.tsx b/examples/with-npm/packages/ui/Button.tsx
new file mode 100644
index 0000000..3e5afc7
--- /dev/null
+++ b/examples/with-npm/packages/ui/Button.tsx
@@ -0,0 +1,5 @@
+import * as React from "react";
+
+export const Button = () => {
+ return <button>Boop</button>;
+};