Untitled
unknown
jsx
3 years ago
172 B
13
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>
);
};