Skip to content

Instantly share code, notes, and snippets.

View randallknutson's full-sized avatar

Randall Knutson randallknutson

View GitHub Profile
@travist
travist / custom.js
Last active May 10, 2019 09:48
Custom Component
import { BaseComponent } from './Base';
import { Formio } from 'formiojs/full';
export class CustomComponent extends BaseComponent {
constructor(component, options, data) {
super(component, options, data);
}
}
Formio.registerComponent('custom', CustomComponent);