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 ( -
-

- Hello Vite + React + Tailwind! -

+
+
+

Vite + React + Tailwind

+
+ +

+ Edit src/App.tsx and save to test HMR +

+
+
) }