Skip to content

Instantly share code, notes, and snippets.

@morintd
Created March 10, 2024 15:18
Show Gist options
  • Save morintd/112071768ff71469e58f93263e3376a0 to your computer and use it in GitHub Desktop.
Save morintd/112071768ff71469e58f93263e3376a0 to your computer and use it in GitHub Desktop.
type Props = {
value: string;
onClick: () => void;
};
export function Square(props: Props) {
return (
<button role="button" className="square" onClick={props.onClick}>
{props.value}
</button>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment