-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomponents.module.ts
45 lines (42 loc) · 1.6 KB
/
components.module.ts
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
33
34
35
36
37
38
39
40
41
42
43
44
45
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
import { FormsModule } from '@angular/forms';
import { NouisliderModule } from 'ng2-nouislider';
import { JwBootstrapSwitchNg2Module } from 'jw-bootstrap-switch-ng2';
import { RouterModule } from '@angular/router';
import { SlickCarouselModule } from 'ngx-slick-carousel';
import { TeamSectionComponent } from './teamSection/teamSection.component';
import { ComponentsComponent } from './components.component';
import { NgbdModalComponent } from './modal/modal.component';
import { NgbdModalContent } from './modal/modal.component';
import { MemberCardComponent } from './member-card/member-card.component';
import { OurWorkComponent } from './our-work/our-work.component';
import { ProjectCardComponent } from './project-card/project-card.component';
import { OurTeamComponent } from './our-team/our-team.component';
import { TechBlogComponent } from './tech-blog/tech-blog.component';
@NgModule({
imports: [
CommonModule,
FormsModule,
NgbModule,
NouisliderModule,
SlickCarouselModule,
RouterModule,
JwBootstrapSwitchNg2Module
],
declarations: [
ComponentsComponent,
TeamSectionComponent,
NgbdModalComponent,
NgbdModalContent,
MemberCardComponent,
OurWorkComponent,
ProjectCardComponent,
OurTeamComponent,
TechBlogComponent
],
entryComponents: [NgbdModalContent],
exports: [ComponentsComponent]
})
export class ComponentsModule { }