mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-12-24 05:07:06 +00:00
12 lines
260 B
TypeScript
Executable File
12 lines
260 B
TypeScript
Executable File
import {Component} from '@angular/core';
|
|
|
|
/**
|
|
* @title Basic buttons
|
|
*/
|
|
@Component({
|
|
selector: 'button-overview-example',
|
|
templateUrl: 'button-overview-example.html',
|
|
styleUrls: ['button-overview-example.css'],
|
|
})
|
|
export class ButtonOverviewExample {}
|