Commit cf14fc10 authored by prumde's avatar prumde

Added new Component ecm-explore


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@174278 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 87444e5b
<ecm-header [isFixedHeader]=true> </ecm-header>
<ecm-content> </ecm-content>
<ecm-footer> </ecm-footer>
\ No newline at end of file
import { Component, OnInit, OnDestroy } from '@angular/core';
@Component({
selector: 'ecm-explore',
templateUrl: './ecm-explore.component.html',
styleUrls: ['./ecm-explore.component.css']
})
export class ECMExploreComponent implements OnInit, OnDestroy {
constructor() { }
ngOnInit() {
console.log(' ECMExploreComponent ngOnInit');
}
ngOnDestroy() {
console.log(' ECMExploreComponent ngOnDestroy');
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment