From 14b2d473ea82470368a2188b699c6b162e646e16 Mon Sep 17 00:00:00 2001 From: Rayan Date: Sun, 16 Feb 2025 04:19:58 -0500 Subject: [PATCH] Fix App.tsx --- src/App.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/App.tsx b/src/App.tsx index d083928..9c81ea0 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,7 +1,11 @@ +import { useState } from 'react' + function App() { + const [name, setName] = useState('') + return ( <> -

Hello

+

) }