Skip to content

Instantly share code, notes, and snippets.

@nerdic-coder
Created April 20, 2018 20:51
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 nerdic-coder/0fea501ef49217b42a9a66b000b10370 to your computer and use it in GitHub Desktop.
Save nerdic-coder/0fea501ef49217b42a9a66b000b10370 to your computer and use it in GitHub Desktop.
heroes.tsx with hero object
import { Component } from '@stencil/core';
import { Hero } from '../../models/hero';
@Component({
tag: 'app-heroes',
styleUrl: 'heroes.css'
})
export class Heroes {
private hero:Hero = {
id: 1,
name: 'Windstorm'
};
render() {
return (
<div>
<h2>{ this.hero.name } Details</h2>
<div><span>id: </span>{this.hero.id}</div>
<div><span>name: </span>{this.hero.name}</div>
</div>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment