37 lines
1.3 KiB
TypeScript
37 lines
1.3 KiB
TypeScript
|
import { NgModule } from '@angular/core';
|
||
|
import { CommonModule } from '@angular/common';
|
||
|
import { MatBadgeModule } from '@angular/material/badge';
|
||
|
import { MatButtonModule } from '@angular/material/button';
|
||
|
import { MatButtonToggleModule } from '@angular/material/button-toggle';
|
||
|
import { MatCardModule } from '@angular/material/card';
|
||
|
import { MatChipsModule } from '@angular/material/chips';
|
||
|
import { MatDialogModule } from '@angular/material/dialog';
|
||
|
import { MatTabsModule } from '@angular/material/tabs';
|
||
|
import { FlexLayoutModule } from '@angular/flex-layout';
|
||
|
|
||
|
import { SalesRoutingModule } from './sales-routing.module';
|
||
|
import { RunningTablesComponent } from "./running-tables/running-tables.component";
|
||
|
import { MenuCategoriesComponent } from './menu-categories/menu-categories.component';
|
||
|
import { ProductsComponent } from './products/products.component';
|
||
|
import { ModifiersComponent } from './modifiers/modifiers.component';
|
||
|
|
||
|
@NgModule({
|
||
|
declarations: [RunningTablesComponent, MenuCategoriesComponent, ProductsComponent, ModifiersComponent],
|
||
|
imports: [
|
||
|
CommonModule,
|
||
|
FlexLayoutModule,
|
||
|
MatBadgeModule,
|
||
|
MatButtonModule,
|
||
|
MatButtonToggleModule,
|
||
|
MatCardModule,
|
||
|
MatChipsModule,
|
||
|
MatDialogModule,
|
||
|
MatTabsModule,
|
||
|
SalesRoutingModule
|
||
|
],
|
||
|
entryComponents: [
|
||
|
ModifiersComponent
|
||
|
]
|
||
|
})
|
||
|
export class SalesModule { }
|