Skip to content

Commit fc8d32c

Browse files
committed
Creates core module for core component and services
1 parent 21daf60 commit fc8d32c

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

src/app/core/core.module.ts

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
import { NgModule } from '@angular/core';
2+
import { CommonModule } from '@angular/common';
3+
import { HeaderComponent } from './theme/header/header.component';
4+
import { NotFoundComponent } from './theme/not-found/not-found.component';
5+
import { FooterComponent } from './theme/footer/footer.component';
6+
import { MaterialModule } from '../shared/material.module';
7+
import { LoginComponent } from './auth/login/login.component';
8+
import { GoogleSigninButtonModule } from '@abacritt/angularx-social-login';
9+
import { RouterModule } from '@angular/router';
10+
11+
@NgModule({
12+
imports: [
13+
CommonModule,
14+
MaterialModule,
15+
GoogleSigninButtonModule,
16+
RouterModule,
17+
],
18+
declarations: [
19+
HeaderComponent,
20+
NotFoundComponent,
21+
FooterComponent,
22+
LoginComponent,
23+
],
24+
exports: [
25+
HeaderComponent,
26+
NotFoundComponent,
27+
FooterComponent,
28+
LoginComponent,
29+
],
30+
})
31+
export class CoreModule {}

0 commit comments

Comments
 (0)