Skip to content

Instantly share code, notes, and snippets.

@Tallyb
Last active June 7, 2019 13:28
Show Gist options
  • Save Tallyb/c4f40c103eedd7c9c5e26003bb1addb3 to your computer and use it in GitHub Desktop.
Save Tallyb/c4f40c103eedd7c9c5e26003bb1addb3 to your computer and use it in GitHub Desktop.
BAsic component testing
import { Component, Prop, h, JSX } from '@stencil/core';
@Component({
tag: 'my-basic',
styleUrl: 'basic.css',
shadow: true
})
export class MyBasic {
@Prop() first: string;
@Prop() last: string;
render(): JSX.Element {
return (
<p>My name is {this.last} {this.first}</p>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment