Skip to content

Instantly share code, notes, and snippets.

@NishuGoel
Created December 25, 2019 11:24
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 NishuGoel/6349821760fe17fdafb6466a08ed4de5 to your computer and use it in GitHub Desktop.
Save NishuGoel/6349821760fe17fdafb6466a08ed4de5 to your computer and use it in GitHub Desktop.
@customElement('my-web-comp')
export class myWebComp extends LitElement {
@property()
compProp = 'hello';
render(){
return html`<p>${this.compProp}</p>`;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment