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