// Angular Core
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';

// Modules
import { BrandsRoutingModule } from './brands-routing.module';
import { SharedModule } from 'src/app/shared-module/shared-module.module';

// Components
import { BrandsComponent } from './components/brands/brands.component';


@NgModule({
  declarations: [
    BrandsComponent
  ],
  imports: [
    CommonModule,
    BrandsRoutingModule,
    SharedModule
  ]
})
export class BrandsModule { }
