mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-14 12:56:34 +03:00
14 lines
297 B
JavaScript
14 lines
297 B
JavaScript
import {Component, View} from 'angular2/angular2';
|
|
|
|
@Component({selector: 'redoc-test'})
|
|
@View({
|
|
templateUrl: './lib/RedocTest/redoc-test.html',
|
|
styleUrls: ['./lib/RedocTest/redoc-test.css'],
|
|
})
|
|
// Component controller
|
|
export class RedocTest {
|
|
constructor() {
|
|
this.name = 'ReDoc';
|
|
}
|
|
}
|