Created
August 30, 2017 22:51
-
-
Save pavei/a95d2162d93e663b90a55e594fd7e5e0 to your computer and use it in GitHub Desktop.
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
import { Component, Prop } from '@stencil/core'; | |
@Component({ | |
tag: 'my-first-component', | |
styleUrl: 'my-first-component.scss' | |
}) | |
export class MyComponent { | |
// Indicate that name should be a public property on the component | |
@Prop() name: string; | |
render() { | |
return ( | |
<p> | |
My name is {this.name} | |
</p> | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment