Created
April 29, 2019 18:14
-
-
Save Mayankgupta688/cefedfc8fd32c56dfc604a429a540b3a 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
| import React from "react"; | |
| export default function ShowEmployeeSalaryDetails(props) { | |
| return ( | |
| <div> | |
| <p>Employee Name: {props.name}</p> | |
| <p>Employee Salary: {props.salary}</p> | |
| <p>Employee Bonus: {props.bonus}</p> | |
| </div> | |
| ) | |
| } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment