You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

blog-entry.component.ts 243B

12345678910
  1. import {Component, Input} from '@angular/core';
  2. import {BlogEntry} from './blog-entry';
  3. @Component({
  4. selector: 'app-blog-entry',
  5. templateUrl: 'blog-entry.component.html'
  6. })
  7. export class BlogEntryComponent {
  8. @Input() entry: BlogEntry;
  9. }