Skip to content

Instantly share code, notes, and snippets.

@iammerrick
Created March 20, 2025 17:51
Show Gist options
  • Save iammerrick/223deb71ecb5ae1d1ef53b21447cbcac to your computer and use it in GitHub Desktop.
Save iammerrick/223deb71ecb5ae1d1ef53b21447cbcac to your computer and use it in GitHub Desktop.
Button
import * as React from "react";
export default function Button(props) {
return React.createElement(
"button",
{
onClick: () => {
console.log("Behavior!");
},
},
props.children
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment