Untitled
Anonymous
jsx
06/28/2022 9:58 PM
232 B
21
Indexable
const Form = ({ title, text, buttonLabel }) => {
return (
<form>
<h1>{title}</h1>
<p>{text}</p>
<button>{buttonLabel}</button>
</form>
);
};
Editor is loading...