import { Component, OnInit } from '@angular/core'; import { SIMPLE_OPTIONS } from '../../../mockup'; @Component({ selector: 'esp-simple-drop-down', templateUrl: './simple-drop-down.component.html', styleUrls: ['./simple-drop-down.component.scss'], }) export class SimpleDropDownComponent implements OnInit { optionValues = SIMPLE_OPTIONS.options; constructor() {} ngOnInit(): void {} }