Untitled

 avatar
unknown
jsx
3 years ago
172 B
8
Indexable
const Form = ({ title, text, buttonLabel }) => {

  return (
    <form>
      <h1>{title}</h1>
      <p>{text}</p>
      <button>{buttonLabel}</button>
    </form>
  );
};
Editor is loading...