Teso Business 2.0 angular source code
https://bacwaredev.barhendev.com/teso
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.8 KiB
54 lines
1.8 KiB
3 years ago
|
import { NgModule } from '@angular/core';
|
||
|
import { CommonModule } from '@angular/common';
|
||
|
import { MatButtonModule } from '@angular/material/button';
|
||
|
import { MatButtonToggleModule } from '@angular/material/button-toggle';
|
||
|
import { MatRippleModule } from '@angular/material/core';
|
||
|
import { MatDialogModule } from '@angular/material/dialog';
|
||
|
import { MatDividerModule } from '@angular/material/divider';
|
||
|
import { MatFormFieldModule } from '@angular/material/form-field';
|
||
|
import { MatIconModule } from '@angular/material/icon';
|
||
|
import { MatInputModule } from '@angular/material/input';
|
||
|
import { MatMenuModule } from '@angular/material/menu';
|
||
|
import { MatPaginatorModule } from '@angular/material/paginator';
|
||
|
import { MatProgressBarModule } from '@angular/material/progress-bar';
|
||
|
import { MatSelectModule } from '@angular/material/select';
|
||
|
import { MatSidenavModule } from '@angular/material/sidenav';
|
||
|
import { MatSortModule } from '@angular/material/sort';
|
||
|
import { MatTableModule } from '@angular/material/table';
|
||
|
import { MatTabsModule } from '@angular/material/tabs';
|
||
|
import { MatTooltipModule } from '@angular/material/tooltip';
|
||
|
import { TranslocoModule } from '@ngneat/transloco';
|
||
|
import { SharedModule } from 'app/shared/shared.module';
|
||
|
import { TempShopComponent } from './temp-shop.component';
|
||
|
|
||
|
|
||
|
|
||
|
@NgModule({
|
||
|
declarations: [
|
||
|
TempShopComponent
|
||
|
],
|
||
|
imports: [
|
||
|
CommonModule,
|
||
|
MatButtonModule,
|
||
|
MatButtonToggleModule,
|
||
|
MatDividerModule,
|
||
|
MatIconModule,
|
||
|
MatFormFieldModule,
|
||
|
MatInputModule,
|
||
|
MatMenuModule,
|
||
|
MatProgressBarModule,
|
||
|
MatRippleModule,
|
||
|
MatSidenavModule,
|
||
|
MatSortModule,
|
||
|
MatTableModule,
|
||
|
MatTabsModule,
|
||
|
MatDialogModule,
|
||
|
TranslocoModule,
|
||
|
SharedModule,
|
||
|
MatPaginatorModule,
|
||
|
MatSelectModule,
|
||
|
MatTooltipModule,
|
||
|
]
|
||
|
})
|
||
|
export class TempShopModule { }
|