request

PHOTO EMBED

Mon Dec 20 2021 01:03:32 GMT+0000 (Coordinated Universal Time)

Saved by @Tazeen

import { Component, OnInit } from "@angular/core";
import { ArticleService } from "./article.service";

@Component({
  selector: "app-article",
  templateUrl: "./article.component.html",
  styleUrls: ["./article.component.css"]
})
export class ArticleComponent implements OnInit {
  private articles: any;

  constructor(private articleService: ArticleService) {}

  ngOnInit() {
    articleService.getArticles().subscribe(
      articles => {
        this.articles = articles.lessons.data;
      },
      err => {
        console.log(err);
      }
    );
  }
}
content_copyCOPY