Advertisement
Guest User

Untitled

a guest
May 16th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import { Component, OnInit } from '@angular/core';
  2.  
  3. @Component({
  4.   selector: 'app-home',
  5.   templateUrl: './home.component.html',
  6.   styleUrls: ['./home.component.scss']
  7. })
  8. export class HomeComponent implements OnInit {
  9.   gist1 = 'https://gist.github.com/robertleroy/38f49fc4ec40f81c73c3d671011126a9.js';
  10.   gist2 = 'https://gist.github.com/robertleroy/38f49fc4ec40f81c73c3d671011126a9.js?file=gist.component.ts'
  11.  
  12.   test =
  13.   `<h4>Highlight response</h4>
  14.   <pre>{{ response | json }}</pre>`
  15.  
  16.   constructor() { }
  17.  
  18.   ngOnInit() {
  19.   }
  20.  
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement