Skip to content

Instantly share code, notes, and snippets.

@MonsieurMan
Created August 10, 2018 09:06
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 MonsieurMan/83872e25a3a6aadcd430939f4d978593 to your computer and use it in GitHub Desktop.
Save MonsieurMan/83872e25a3a6aadcd430939f4d978593 to your computer and use it in GitHub Desktop.
export class Adder {
@Prop() a: number;
@Prop() b: number;
render(): JSX.Element {
return this.a + this.b;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment