-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.module.ts
57 lines (55 loc) · 2.13 KB
/
app.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
46
47
48
49
50
51
52
53
54
55
56
57
import { BrowserModule } from '@angular/platform-browser';
import { FormsModule } from '@angular/forms';
import { NgModule } from '@angular/core';
import { HttpClientModule } from '@angular/common/http';
import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
import { AppComponent } from './app.component';
import { routing } from './app.routing';
import { LoginComponent } from './components/auth/login.component';
import { NavbarComponent } from './components/navbar/navbar.component';
import { RegisterComponent } from './components/auth/register.component';
import { AppFooterComponent } from './components/app-footer/app-footer.component';
import { GamesComponent } from './components/games/games.component';
import { SideBlockComponent } from './components/games/side-block.component';
import { ProfileComponent } from './components/users/profile.component';
import { ErrorComponent } from './components/error/error.component';
import { EditUserComponent } from './components/users/edit-user.component';
import { GamePageComponent } from './components/games/game-page.component';
import { NgImageSliderModule } from 'ng-image-slider';
import { ControlPanelComponent } from './components/games/control-panel.component';
import { CartComponent } from './components/users/cart.component';
import { CheckoutComponent } from './components/users/checkout.component';
import { SearchComponent } from './components/games/search.component';
import { AddGameComponent } from './components/games/add-game.component';
import { EditGameComponent } from './components/games/edit-game.component';
@NgModule({
declarations: [
AppComponent,
LoginComponent,
NavbarComponent,
RegisterComponent,
AppFooterComponent,
GamesComponent,
SideBlockComponent,
ProfileComponent,
ErrorComponent,
EditUserComponent,
GamePageComponent,
ControlPanelComponent,
CartComponent,
CheckoutComponent,
SearchComponent,
AddGameComponent,
EditGameComponent,
],
imports: [
BrowserModule,
FormsModule,
HttpClientModule,
routing,
NgbModule,
NgImageSliderModule,
],
bootstrap: [AppComponent],
})
export class AppModule {}