You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
importReactfrom"react";importLogSomePropsfrom"./hoc";functionGreeting(myprops){return<h1>Hello there {myprops.name} !!!! </h1>}/*passing Greeting component as an arg so that I can see Greeting component props within the Browser*/exportdefaultLogSomeProps(Greeting);
App.js file
importReactfrom"react";importGreetingfrom"./Greeting";functionApp(){return(<divclassName="App"><h1>Hello My Friend</h1><Greetingname="Kevin"/></div>)}