UNPKG

angular-formio

Version:

The Form.io dynamic form and data management system for Angular.

14 lines (12 loc) 321 B
/* tslint: disable */ import { Component } from '@angular/core'; import { FormRoutes } from './'; @Component({ template: require('./forms.component.html') }) export class FormioFormsComponent { public forms: any[] = FormRoutes[0].children.filter((item: any) => { return !!item.path; }); } /* tslint: enable */