aboutsummaryrefslogtreecommitdiff
path: root/demos/react-fast-refresh-test/src/components/button.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'demos/react-fast-refresh-test/src/components/button.tsx')
-rw-r--r--demos/react-fast-refresh-test/src/components/button.tsx9
1 files changed, 0 insertions, 9 deletions
diff --git a/demos/react-fast-refresh-test/src/components/button.tsx b/demos/react-fast-refresh-test/src/components/button.tsx
deleted file mode 100644
index 4c3388670..000000000
--- a/demos/react-fast-refresh-test/src/components/button.tsx
+++ /dev/null
@@ -1,9 +0,0 @@
-import { RenderCounter } from "./RenderCounter";
-
-export const Button = ({ children }) => {
- return (
- <RenderCounter name="Button">
- <div className="Button">{children}</div>
- </RenderCounter>
- );
-};