function Button({ body, modifier, onClick }) { const classNames = `btn ${modifier ? `btn--${modifier}` : ""}`; return ( ); } export default Button;