Make last step (a summary page of scaffolder template) configurable.

Signed-off-by: bnechyporenko <bnechyporenko@bol.com>
This commit is contained in:
bnechyporenko
2022-10-14 11:33:45 +02:00
parent 6965ead780
commit d4d07cf55e
+15
View File
@@ -0,0 +1,15 @@
---
'@backstage/plugin-scaffolder': patch
---
Enabling the customization of the last page in the scaffolder template.
To override the content you have to do the next:
```typescript
scaffolderPlugin.__experimentalReconfigure({
lastStepFormComponent: (props: LastStepFormProps) => (
<YourCustomComponent {...props} />
),
});
```