Skip to content

Instantly share code, notes, and snippets.

@SingAvi
Created May 5, 2021 13:36
Show Gist options
  • Save SingAvi/39ba589ae96827d54b106d1bc0bf9e7c to your computer and use it in GitHub Desktop.
Save SingAvi/39ba589ae96827d54b106d1bc0bf9e7c to your computer and use it in GitHub Desktop.
import React from 'react';
// here props are generally passed in a JSON structure .
function Button(props) {
return (
<div>
// props has a child name : button_name which we passed to it from App.js
<button>{props.button_name}</button>
</div>
)
}
export default Button;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment