react-formio-helper
Version:
Helper library for apps built with react and form.io.
20 lines (18 loc) • 398 B
JSX
import React from 'react';
import Formio from 'react-formio';
export default ({form, onFormSubmit}) => {
if (!form.isFetching && form.form) {
return (
<div className="form-create">
<Formio src={form.src} form={form.form} onFormSubmit={onFormSubmit} />
</div>
);
}
else {
return (
<div className="form-create">
Loading
</div>
);
}
};