debian-image-builder-frontend/src/Components/CreateImageWizard/steps/review.js
Sanne Raymaekers a0883793ba CreateImageWizard: Step template with id
The template is the default template from data driven forms, with the id
added.

Fixes #642
2022-03-25 12:43:31 +01:00

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'
}
]
};