15 lines
260 B
TypeScript
15 lines
260 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-feed',
|
|
templateUrl: './feed.component.html',
|
|
styleUrls: ['./feed.component.scss'],
|
|
})
|
|
export class FeedComponent implements OnInit {
|
|
|
|
constructor() { }
|
|
|
|
ngOnInit() {}
|
|
|
|
}
|