mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
8 lines
252 B
TypeScript
8 lines
252 B
TypeScript
|
|
import {Component, View} from 'angular2/angular2';
|
||
|
|
|
||
|
|
@Component({selector: 'md-progress-circular'})
|
||
|
|
@View({templateUrl: 'angular2_material/src/components/progress-circular/progress_circular.html'})
|
||
|
|
export class MdProgressCircular {
|
||
|
|
constructor() {}
|
||
|
|
}
|