angular-formio
Version:
The Form.io dynamic form and data management system for Angular.
14 lines (12 loc) • 317 B
text/typescript
/* tslint: disable */
import { Component } from '@angular/core';
import { FormioAuthService } from '../src/auth';
({
selector: 'formio-demo-app',
template: require('./demo.component.html')
})
export class FormioDemoComponent {
constructor(public auth: FormioAuthService) {
}
}
/* tslint: enable */