import { Component, Input } from '@angular/core'; @Component({ selector: 'form-only', template: `
`, }) export class FormOnlyPageTemplateComponent { /** * Sets the theme of the component */ @Input() public theme: 'inside'|'outside'; /** * Sets the TitleAndSectionComponent section input */ @Input() public section: string; /** * Sets the TitleAndSectionComponent title input */ @Input() public title: string; /** * Sets the target id for 508 skip navigation */ @Input() public skipNavID: string = "primary-content"; }