Skip to content
Snippets Groups Projects
Select Git revision
  • de1fcffdf138138dd942a40e8f75e2bd9cd71a96
  • main default protected
  • bugfix/fix-routing
  • bugfix/fix-html-and-css
  • bugfix/test
  • feature/add-signup-validation
  • feature/add-update-information-validator
  • feature/add-login-validator
  • feature/add-payment-validator
  • feature/add-admin-view
  • feature/add-orders-html
  • bugfix/fix-html-feedback
  • chore/refacto-code
  • feature/add-update-user-html
  • feature/add-product-html
  • feature/add-card-html
  • feature/add-sign-up-html
  • feature/add-login-html
  • bugfix/fix-pop-up
  • feature/add-routings-configuration
  • feature/add-cards-html
21 results

app.module.ts

Blame
  • Forked from Shop Sphere / frontend
    71 commits behind, 1 commit ahead of the upstream repository.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    app.module.ts 951 B
    import { NgModule } from '@angular/core';
    import { BrowserModule } from '@angular/platform-browser';
    
    import { AppRoutingModule } from './app-routing.module';
    import { AppComponent } from './app.component';
    import { ProductsComponent } from './components/products/products.component';
    import { ProductComponent } from './components/product/product.component';
    import { OrdersComponent } from './components/orders/orders.component';
    import { OrderComponent } from './components/order/order.component';
    import { BuyerComponent } from './components/buyer/buyer.component';
    import { AdminComponent } from './components/admin/admin.component';
    
    @NgModule({
      declarations: [
        AppComponent,
        ProductsComponent,
        ProductComponent,
        OrdersComponent,
        OrderComponent,
        BuyerComponent,
        AdminComponent
      ],
      imports: [
        BrowserModule,
        AppRoutingModule
      ],
      providers: [],
      bootstrap: [AppComponent]
    })
    export class AppModule { }