initial commit
This commit is contained in:
parent
1790106c30
commit
03b0dd8422
33 changed files with 1006 additions and 513 deletions
|
|
@ -1,18 +1,32 @@
|
|||
import { NgModule } from '@angular/core';
|
||||
import { BrowserModule } from '@angular/platform-browser';
|
||||
|
||||
import { BrowserModule } from '@angular/platform-browser';
|
||||
import { AppRoutingModule } from './app-routing.module';
|
||||
import { CartModule } from './cart/cart.module';
|
||||
|
||||
import { AppComponent } from './app.component';
|
||||
|
||||
import { ModulesComponent } from './modules/modules.component';
|
||||
import { ModulesItemComponent } from './modules-item/modules-item.component';
|
||||
|
||||
import { HomeComponent } from './home/home.component';
|
||||
import { ModuleDetailComponent } from './module-detail/module-detail.component';
|
||||
|
||||
@NgModule({
|
||||
declarations: [
|
||||
AppComponent
|
||||
AppComponent,
|
||||
ModulesComponent,
|
||||
HomeComponent,
|
||||
ModuleDetailComponent,
|
||||
ModulesItemComponent
|
||||
],
|
||||
imports: [
|
||||
BrowserModule,
|
||||
AppRoutingModule
|
||||
AppRoutingModule,
|
||||
CartModule,
|
||||
],
|
||||
providers: [],
|
||||
bootstrap: [AppComponent]
|
||||
})
|
||||
|
||||
export class AppModule { }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue