From 832ff28307a3981fdd2a33bf80afd52e4bfd157e Mon Sep 17 00:00:00 2001 From: YOUSEF EBRAHIM <77855618+Yousef-Ebrahim@users.noreply.github.com> Date: Wed, 23 Nov 2022 20:20:46 +0200 Subject: [PATCH] initial commit --- src/App.js | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/App.js b/src/App.js index 5df4878b4..10fa17260 100644 --- a/src/App.js +++ b/src/App.js @@ -1,11 +1,16 @@ import * as React from 'react'; -const title = 'React'; +function welcome(title) { + return title; +} function App() { return (
-

Hello World

+

Hello {welcome('React')}

+ + +
); }