Headless CMS and Content Managment Hub
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.
 
 
 
 
 

27 lines
634 B

/*
* Squidex Headless CMS
*
* @license
* Copyright (c) Sebastian Stehle. All rights reserved
*/
import { Component } from '@angular/core';
import { ActivatedRoute } from '@angular/router';
import { HelpService } from './../declarations-base';
@Component({
selector: 'sqx-help',
styleUrls: ['./help.component.scss'],
templateUrl: './help.component.html'
})
export class HelpComponent {
public helpSections =
this.helpService.getHelp(this.route.snapshot.data['helpPage']);
constructor(
private readonly helpService: HelpService,
private readonly route: ActivatedRoute
) {
}
}