15 lines
571 B
TypeScript
15 lines
571 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { LogoComponent, SideNavComponent, SmallChipComponent, StatusBarComponent } from './index';
|
|
import { CommonModule } from '@angular/common';
|
|
import { MatTooltipModule } from '@angular/material/tooltip';
|
|
import { IqserIconsModule } from '../icons';
|
|
|
|
const components = [SmallChipComponent, StatusBarComponent, SideNavComponent, LogoComponent];
|
|
|
|
@NgModule({
|
|
declarations: [...components],
|
|
exports: [...components],
|
|
imports: [CommonModule, MatTooltipModule, IqserIconsModule],
|
|
})
|
|
export class IqserSharedModule {}
|