From a69593d9bb2e93273f3840a8272305e50b91b989 Mon Sep 17 00:00:00 2001 From: ducknoir Date: Fri, 5 Apr 2024 19:26:41 -0700 Subject: [PATCH] Personalize greeting --- src/App.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.js b/src/App.js index 3e17b6d..04a89f1 100644 --- a/src/App.js +++ b/src/App.js @@ -1,7 +1,7 @@ function App() { - return

Hi there!

; + return

Hi Diane!

; } export default App