diff options
Diffstat (limited to 'demos/react-fast-refresh-test/src/components/app.tsx')
-rw-r--r-- | demos/react-fast-refresh-test/src/components/app.tsx | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/demos/react-fast-refresh-test/src/components/app.tsx b/demos/react-fast-refresh-test/src/components/app.tsx deleted file mode 100644 index 2edc02545..000000000 --- a/demos/react-fast-refresh-test/src/components/app.tsx +++ /dev/null @@ -1,14 +0,0 @@ -import * as React from "react"; -import { Button } from "./Button"; -import { RenderCounter } from "./RenderCounter"; -export function App() { - return ( - <RenderCounter name="App"> - <div className="AppRoot"> - <h1>This is the root element</h1> - - <Button>Click</Button> - </div> - </RenderCounter> - ); -} |