-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Expand file tree
/
Copy pathcomponents.module.ts
More file actions
32 lines (30 loc) · 1.07 KB
/
components.module.ts
File metadata and controls
32 lines (30 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { RouterModule } from '@angular/router';
import { FooterComponent } from './footer/footer.component';
import { NavbarComponent } from './navbar/navbar.component';
import { SidebarComponent } from './sidebar/sidebar.component';
import { DashboardTabCardComponent, DashboardCardTab, DashboardTabCardHeader, DashboardCardTabLabel } from './dashboard-tab-card/dashboard-tab-card.component';
import { PortalModule } from '@angular/cdk/portal';
import { MatButtonModule } from '@angular/material/button';
@NgModule({
imports: [
CommonModule,
RouterModule,
PortalModule,
MatButtonModule,
],
declarations: [
FooterComponent,
NavbarComponent,
SidebarComponent,
DashboardTabCardComponent, DashboardCardTab, DashboardTabCardHeader, DashboardCardTabLabel,
],
exports: [
FooterComponent,
NavbarComponent,
SidebarComponent,
DashboardTabCardComponent, DashboardCardTab, DashboardTabCardHeader, DashboardCardTabLabel,
]
})
export class ComponentsModule { }