Created
January 30, 2016 22:20
-
-
Save mndvns/a373bd9b0f7fb0d997cd to your computer and use it in GitHub Desktop.
This file contains 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
:doc | |
This is a test component | |
@name Test | |
@prop {String} color | |
:js | |
var color = props.color || 'none'; | |
h1= `color: ${color}` | |
:module | |
export function doStuff(a, b) { | |
return a * b; | |
} | |
:test | |
it('should do stuff', function() { | |
console.log(doStuff(10, 20)) | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment