Untitled

 avatar
unknown
javascript
a year ago
216 B
4
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