import { Directive, TemplateRef } from '@angular/core';
import { HypermediaForm } from '../../components';

@Directive({
    selector: '[belowForm]'
})
export class BelowFormDirective {
    constructor(public templateRef: TemplateRef<{$implicit: HypermediaForm}>) { }
}
