interactive.component.ts 305 Bytes
import { Component, OnInit } from '@angular/core';

@Component({
  selector: 'app-element-interactive',
  templateUrl: './interactive.component.html',
  styleUrls: ['./interactive.component.scss']
})
export class ElementInteractiveComponent implements OnInit {

  constructor() { }

  ngOnInit() {
  }

}