Wizard: Add unleash flag and update tests

This gates the step behind an unleash flag and updates the existing tests so they pass with the new step added.
This commit is contained in:
regexowl 2025-01-14 10:56:42 +01:00 committed by Lucas Garfield
parent e6bc0d429a
commit 3167effa1b
22 changed files with 112 additions and 5 deletions

View file

@ -0,0 +1,16 @@
import React from 'react';
import { Text, Form, Title } from '@patternfly/react-core';
const FirewallStep = () => {
return (
<Form>
<Title headingLevel="h1" size="xl">
Firewall
</Title>
<Text>Customize firewall settings for your image.</Text>
</Form>
);
};
export default FirewallStep;