Untitled
unknown
jsx
4 years ago
172 B
15
Indexable
const Form = ({ title, text, buttonLabel }) => {
return (
<form>
<h1>{title}</h1>
<p>{text}</p>
<button>{buttonLabel}</button>
</form>
);
};
Editor is loading...
const Form = ({ title, text, buttonLabel }) => {
return (
<form>
<h1>{title}</h1>
<p>{text}</p>
<button>{buttonLabel}</button>
</form>
);
};