From d0d5206da33e2bb954cedb3d4a39d926677a3c8c Mon Sep 17 00:00:00 2001 From: Orion Reed Date: Thu, 10 Aug 2023 21:35:12 +0100 Subject: [PATCH] test build --- src/pages/Home.tsx | 52 +++++++++++++++++++++++++--------------------- 1 file changed, 28 insertions(+), 24 deletions(-) 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 ( - <> -
- - - - - - -
-

Vite + Preact

-
- -

- Edit src/app.tsx and save to test HMR -

-
-

Click on the Vite and Preact logos to learn more

- - ); + return ( + <> +
+ + + + + + +
+

Vite + Preact + Foo

+
+ +

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

+
+

+ Click on the Vite and Preact logos to learn more +

+ + ) }