pass text to button component react code example
Example: pass text to button component react
// general component
// button component
const ButtonComponent = (props) => {
const handleClick = () => {
console.log(props.text);
};
return (
);
};