Skip to content

Instantly share code, notes, and snippets.

@iamsaief
Last active August 26, 2020 11:22
Show Gist options
  • Save iamsaief/3b89ef1cd0fae4dd354d79acd7ebc23c to your computer and use it in GitHub Desktop.
Save iamsaief/3b89ef1cd0fae4dd354d79acd7ebc23c to your computer and use it in GitHub Desktop.
function App() {
return (
<div>
<HelloWorld name='Hello World'></HelloWorld>
<HelloWorld name='Hello Bangladesh'></HelloWorld>
</div>
);
}
function HelloWorld(props) {
return (
<div>
<h3>{props.name}</h3>
</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment