blob: 98967a89bf4c38145843453ea6cc87f385fc3f9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
function Button({ body, modifier, onClick }) {
const classNames = `btn ${modifier ? `btn--${modifier}` : ""}`;
return (
<button className={classNames} onClick={onClick}>
{body}
</button>
);
}
export default Button;
|