Created
August 10, 2018 09:06
-
-
Save MonsieurMan/83872e25a3a6aadcd430939f4d978593 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
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