Skip to content

Instantly share code, notes, and snippets.

@mndvns
Created January 30, 2016 22:20
Show Gist options
  • Save mndvns/a373bd9b0f7fb0d997cd to your computer and use it in GitHub Desktop.
Save mndvns/a373bd9b0f7fb0d997cd to your computer and use it in GitHub Desktop.
: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