Skip to content

Instantly share code, notes, and snippets.

@Mayankgupta688
Last active May 7, 2019 11:27
Show Gist options
  • Select an option

  • Save Mayankgupta688/5e0becf1586b3f698dadd585e262c1c4 to your computer and use it in GitHub Desktop.

Select an option

Save Mayankgupta688/5e0becf1586b3f698dadd585e262c1c4 to your computer and use it in GitHub Desktop.
function EmployeeDetails(props) {
return (
<div>
<p>Employee Name: {props.name}</p>
<p>Employee Age: {props.age}</p>
<p>Employee Designation: {props.designation}</p>
</div>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment