mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-16 21:35:13 +00:00
18 lines
315 B
TypeScript
18 lines
315 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
selector : 'simple-right-sidenav',
|
|
templateUrl: './right-sidenav.component.html',
|
|
styleUrls : ['./right-sidenav.component.scss']
|
|
})
|
|
export class SimpleRightSidenavComponent
|
|
{
|
|
/**
|
|
* Constructor
|
|
*/
|
|
constructor()
|
|
{
|
|
}
|
|
|
|
}
|