mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-20 07:08:12 +00:00
18 lines
318 B
TypeScript
18 lines
318 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
selector : 'carded-left-sidenav-1',
|
|
templateUrl: './left-sidenav-1.component.html',
|
|
styleUrls : ['./left-sidenav-1.component.scss']
|
|
})
|
|
export class CardedLeftSidenav1Component
|
|
{
|
|
/**
|
|
* Constructor
|
|
*/
|
|
constructor()
|
|
{
|
|
}
|
|
|
|
}
|