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!
   */
}
