summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/portalsdk-tag-library/projects/portalsdk-tag-lib/src/lib/portalsdk-tag-lib.component.ts
blob: 13d3fb6d33ca34334b002962b34307a396784159 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { Component, OnInit } from '@angular/core';

@Component({
  selector: 'enl-portalsdk-tag-lib',
  template: `
    <p>
      portalsdk-tag-lib works!
    </p>
  `,
  styles: []
})
export class PortalsdkTagLibComponent implements OnInit {

  constructor() { }

  ngOnInit() {
  }

}