react component

PHOTO EMBED

Sat Jun 10 2023 22:40:53 GMT+0000 (Coordinated Universal Time)

Saved by @hamzamak #react.js

import React from 'react';
const MyReactComponent = () => {
 const handleClick = () => {
 alert('Button clicked!');
 };
return (
 <div>
 <h2>React Component</h2>
 <button onClick={handleClick}>Click me</button>
 </div>
 );
};
export default MyReactComponent;
content_copyCOPY