Preview:
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;
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter