closes #1070 Separates UpgradeAdapter reference guide examples from the PhoneCat tutorial examples and update dependencies for phonecat upgrade examples
13 lines
197 B
TypeScript
13 lines
197 B
TypeScript
// #docregion
|
|
export const heroDetailComponent = {
|
|
bindings: {
|
|
hero: '='
|
|
},
|
|
template: `
|
|
<h2>{{$ctrl.hero.name}}</h2>
|
|
<div>
|
|
<ng-transclude></ng-transclude>
|
|
</div>
|
|
`
|
|
};
|