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() {
}
}
-
liuzheng712 authored527735a2