Last active
February 11, 2021 03:02
-
-
Save UpperCod/27d744e9c4c95e59041e1d909e3bced9 to your computer and use it in GitHub Desktop.
designed for webcomponents
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function component() { | |
const sayHello = () => { | |
console.log("hi!"); | |
}; | |
const handlerClick = () => { | |
console.log("click"); | |
}; | |
return ( | |
<host shadowDom sayHello={sayHello} onclick={handlerClick}> | |
<slot></slot> | |
</host> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment