Component Props
React
Junior
Functional componentsProps
Requirements:
- Add a
name
prop to theGreeting
component. - Display that prop inside
Greeting
. - Pass
"TechPrep"
fromApp
so the page shows Hello, TechPrep!
import Greeting from "./Greeting"; export default function App() { return ( <div className="App p-3"> <Greeting /> </div> ); }
JavaScript Console
console.log()statements will appear here
Tests