@c8y/apps
Version:
Cumulocity IoT applications
19 lines (17 loc) • 423 B
text/typescript
import { Component } from '@angular/core';
/**
* This is a standard angular component.
* Obviously it does not do anything.
* The ExampleTabFactory in ../../hooks/tabs.ts defines two tabs:
* - Awesome
* - Outstanding
*/
@Component({
selector: 'outstanding',
templateUrl: './outstanding.component.html'
})
export class OutstandingComponent {
/**
* Your content of the Outstanding-Tab goes in here!
*/
}