Created
April 19, 2018 21:48
-
-
Save nerdic-coder/826ecea9982dc494d8311a5129ee9197 to your computer and use it in GitHub Desktop.
heroes.tsx (initial version)
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
import { Component } from '@stencil/core'; | |
@Component({ | |
tag: 'app-heroes', | |
styleUrl: 'heroes.css' | |
}) | |
export class Heroes { | |
render() { | |
return ( | |
<div> | |
</div> | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment