mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-28 11:03:10 +00:00
Lots of breaking changes, all "md" prefixes changed with "mat" due to angular material deprecation of "md", md2 package removed, its not compatible with latest material version, will be replaced with another date picker later.
13 lines
250 B
TypeScript
13 lines
250 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
/**
|
|
* @title Basic button-toggles
|
|
*/
|
|
@Component({
|
|
selector : 'button-toggle-overview-example',
|
|
templateUrl: 'button-toggle-overview-example.html'
|
|
})
|
|
export class ButtonToggleOverviewExample
|
|
{
|
|
}
|