mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-26 10:03:12 +00:00
14 lines
290 B
TypeScript
Executable File
14 lines
290 B
TypeScript
Executable File
import {Component} from '@angular/core';
|
|
|
|
/**
|
|
* @title Autosize sidenav
|
|
*/
|
|
@Component({
|
|
selector: 'sidenav-autosize-example',
|
|
templateUrl: 'sidenav-autosize-example.html',
|
|
styleUrls: ['sidenav-autosize-example.css'],
|
|
})
|
|
export class SidenavAutosizeExample {
|
|
showFiller = false;
|
|
}
|