Skip to content

Instantly share code, notes, and snippets.

@imkost
Created December 5, 2016 19:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save imkost/107adeee9d0cce03e4338c6dabf0d101 to your computer and use it in GitHub Desktop.
Save imkost/107adeee9d0cce03e4338c6dabf0d101 to your computer and use it in GitHub Desktop.
function Box({ text }) {
return `
<div class="box" onClick="Box.onClick()">
${text}
</div>
`;
}
Box.onClick = () => {
alert('box was clicked');
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment