|
| 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