Untitled

mail@pastecode.io avatar
unknown
jsx
2 years ago
172 B
3
Indexable
Never
const Form = ({ title, text, buttonLabel }) => {

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