const Form = ({ title, text, buttonLabel }) => { return ( <form> <h1>{title}</h1> <p>{text}</p> <button>{buttonLabel}</button> </form> ); };