metadata-editor-core
Version:
Metadata Editor Core project Powered by Assyst
36 lines (29 loc) • 489 B
text/typescript
/*
* Angular 2 decorators and services
*/
import {
Component,
OnInit,
ViewEncapsulation
} from '@angular/core';
/*
* App Component
* Top Level Component
*/
({
selector: 'app',
encapsulation: ViewEncapsulation.None,
styleUrls: [
'./app.component.css'
],
template: `
<h1>Core Application</h1>
`
})
export class AppComponent implements OnInit {
constructor(
) {
}
public ngOnInit() {
}
}