Added som basic functionality

This commit is contained in:
Erik Tiekstra
2021-03-17 10:58:55 +01:00
committed by Erik Tiekstra
parent dd743fd638
commit bf66859f06
20 changed files with 271 additions and 166 deletions

View File

@@ -0,0 +1,12 @@
import { ChangeDetectionStrategy, Component } from '@angular/core';
import { IconType } from '@dafa-enums/icon-type.enum';
@Component({
selector: 'dafa-sidebar',
templateUrl: './sidebar.component.html',
styleUrls: ['./sidebar.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class SidebarComponent {
iconType = IconType;
}