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: 'awesome',
  templateUrl: './awesome.component.html'
})
export class AwesomeComponent {
  /**
   * Your content of the Awesome-Tab goes in here!
   */
}
