mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-28 11:03:10 +00:00
12 lines
306 B
TypeScript
Executable File
12 lines
306 B
TypeScript
Executable File
import {Component} from '@angular/core';
|
|
|
|
/**
|
|
* @title Determinate progress-bar
|
|
*/
|
|
@Component({
|
|
selector: 'progress-bar-determinate-example',
|
|
templateUrl: 'progress-bar-determinate-example.html',
|
|
styleUrls: ['progress-bar-determinate-example.css'],
|
|
})
|
|
export class ProgressBarDeterminateExample {}
|