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:
parent
e6bc0d429a
commit
3167effa1b
22 changed files with 112 additions and 5 deletions
16
src/Components/CreateImageWizard/steps/Firewall/index.tsx
Normal file
16
src/Components/CreateImageWizard/steps/Firewall/index.tsx
Normal 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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue