Last active
May 7, 2019 11:27
-
-
Save Mayankgupta688/5e0becf1586b3f698dadd585e262c1c4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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