cms-data.service.ts 356 B

1234567891011121314
  1. import { Injectable } from '@angular/core';
  2. import { of } from 'rxjs';
  3. @Injectable()
  4. export class CmsDataService {
  5. getDataFor(id: string) {
  6. return of({
  7. id,
  8. blogPostUrl: 'https://example.com/blog/' + id,
  9. blogPostTitle: 'Example Blog Post',
  10. blogTags: ['tag1', 'tag2', 'tag3'],
  11. });
  12. }
  13. }