import { Component, OnInit } from '@angular/core'; import { technologies } from './Technology'; @Component({ selector: 'app-technologies', templateUrl: './technologies.component.html', styleUrls: ['./technologies.component.css'] }) export class TechnologiesComponent implements OnInit { state = 'normal'; technologies = technologies; constructor() { } ngOnInit(): void { } }