diff --git a/src/pages/Home.tsx b/src/pages/Home.tsx index 115c85f..e258bd3 100644 --- a/src/pages/Home.tsx +++ b/src/pages/Home.tsx @@ -1,28 +1,32 @@ -import { useState } from 'preact/hooks'; -import preactLogo from '../assets/preact.svg'; -import viteLogo from '/vite.svg'; +import { useState } from 'preact/hooks' +import preactLogo from '../assets/preact.svg' +import viteLogo from '/vite.svg' export function Home() { - const [count, setCount] = useState(0); + const [count, setCount] = useState(0) - return ( - <> -
-
- Edit src/app.tsx and save to test HMR
-
Click on the Vite and Preact logos to learn more
- > - ); + return ( + <> + +
+ Edit src/app.tsx and save to test HMR
+
+ Click on the Vite and Preact logos to learn more +
+ > + ) }