diff --git a/src/App.tsx b/src/App.tsx index 24c8eeb..635e51c 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,11 +1,24 @@ -import React from 'react' +import { useState } from 'react' function App() { + const [count, setCount] = useState(0) + return ( -
+ Edit src/App.tsx and save to test HMR
+