File size: 355 Bytes
babeaf6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
/**
* src/components/Common/Button.jsx
* A general-purpose Button component
*
* created by Lynchee on 7/18/23
*/
import React from 'react';
import './styles.css';
const Button = ({ onClick, name, disabled = false }) => (
<button className="button" onClick={onClick} disabled={disabled}>
{name}
</button>
);
export default Button;
|