The template is the default template from data driven forms, with the id added. Fixes #642
16 lines
343 B
JavaScript
16 lines
343 B
JavaScript
import CustomButtons from '../formComponents/CustomSubmitButtons';
|
|
import StepTemplate from './stepTemplate';
|
|
|
|
export default {
|
|
StepTemplate,
|
|
id: 'wizard-review',
|
|
name: 'review',
|
|
title: 'Review',
|
|
buttons: CustomButtons,
|
|
fields: [
|
|
{
|
|
name: 'review',
|
|
component: 'review'
|
|
}
|
|
]
|
|
};
|