decorator around @Component

by Vladymyr Shevchuk

JavaScript

const config = {
	xs: 320,
  md: 760,
  lg: 1024
};


@SomeDecorator 
@Component({
  selector: 'app-form-item-add-location',
  templateUrlObj: {
  	xs: './form-item-add-location.component.html',
    md: './form-item-add-location.component.html',
    lg: './form-item-add-location.component.html',
  }
  styleUrls: ['./form-item-add-location.component.scss']
})
class MySuperClass {

}