import React from "react"; const Button = (props) => ( <> {props.href ? ( {props.label} ) : ( {props.label} )} > ); export default Button;