Skip to content

Instantly share code, notes, and snippets.

@balvinder294
Created February 13, 2025 07:16
Show Gist options
  • Save balvinder294/8d0b662bd549524840949781ca5c032a to your computer and use it in GitHub Desktop.
Save balvinder294/8d0b662bd549524840949781ca5c032a to your computer and use it in GitHub Desktop.
import React from 'react';
function Greeting(props) {
return (
<h1>Hello, {props.name}!</h1>
);
}
function ParentComponent() {
const name = "Alice"; // Example of data that could be dynamic
return (
<div>
<Greeting name={name} />
<Greeting name="Bob" />
</div>
);
}
export default ParentComponent;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment