Related to #795. This applies the new sorting rules in ESLint to the files by running `npm run lint:js:fix`
16 lines
312 B
JavaScript
16 lines
312 B
JavaScript
import StepTemplate from './stepTemplate';
|
|
import CustomButtons from '../formComponents/CustomSubmitButtons';
|
|
|
|
export default {
|
|
StepTemplate,
|
|
id: 'wizard-review',
|
|
name: 'review',
|
|
title: 'Review',
|
|
buttons: CustomButtons,
|
|
fields: [
|
|
{
|
|
name: 'review',
|
|
component: 'review',
|
|
},
|
|
],
|
|
};
|