Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Mayankgupta688/f0684db70e480907f16b200fdab6d620 to your computer and use it in GitHub Desktop.
Save Mayankgupta688/f0684db70e480907f16b200fdab6d620 to your computer and use it in GitHub Desktop.
import React from "react";
export default function ShowEmployeeBasicDetails(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