export interface NewsFeed {
    label: string;
    headline: string;
    url: string;
    time: number;
    author: string | null;
}
