debian-image-builder-frontend/src/Components/CreateImageWizard/steps/Hostname/index.tsx
regexowl 8c108fe2ec Wizard: Basic Hostname step
This adds Hostname step basics and file structure.
2024-12-10 12:37:36 -06:00

19 lines
398 B
TypeScript

import React from 'react';
import { Text, Form, Title } from '@patternfly/react-core';
import HostnameInput from './components/HostnameInput';
const HostnameStep = () => {
return (
<Form>
<Title headingLevel="h1" size="xl">
Hostname
</Title>
<Text>Select a hostname for your image.</Text>
<HostnameInput />
</Form>
);
};
export default HostnameStep;