Untitled
unknown
javascript
2 years ago
216 B
8
Indexable
export const TestChild = ({ setname }) => {
return (
<div>
<h1>Test Child</h1>
<button onClick={()=>{setname("Kuch Bhi")}}>
Click From Clild
</button>
</div>
);
};Editor is loading...
Leave a Comment