redoc/lib/RedocTest/redoc-test.js

14 lines
297 B
JavaScript
Raw Normal View History

2015-10-03 11:54:09 +03:00
import {Component, View} from 'angular2/angular2';
@Component({selector: 'redoc-test'})
@View({
templateUrl: './lib/RedocTest/redoc-test.html',
styleUrls: ['./lib/RedocTest/redoc-test.css'],
})
2015-10-03 11:54:09 +03:00
// Component controller
export class RedocTest {
constructor() {
this.name = 'ReDoc';
}
}