11 lines
174 B
TypeScript
11 lines
174 B
TypeScript
|
import { Component } from '@angular/core';
|
||
|
import 'rxjs/Rx';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'bottom',
|
||
|
templateUrl: 'bottom.component.html'
|
||
|
})
|
||
|
export class BottomComponent {
|
||
|
|
||
|
}
|