19 lines
398 B
TypeScript
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;
|