Skip to content

Instantly share code, notes, and snippets.

@Mayankgupta688
Created April 29, 2019 18:14
Show Gist options
  • Select an option

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

Select an option

Save Mayankgupta688/cefedfc8fd32c56dfc604a429a540b3a to your computer and use it in GitHub Desktop.
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