debian-image-builder-frontend/src/Components/CreateImageWizard/steps/Locale/index.tsx
regexowl 9e1285c6f3 Wizard: Update microcopy on Locale step (HMS-5656)
This updates microcopy on Locale step as suggested in the linked bug report.
2025-04-02 12:45:45 +02:00

21 lines
493 B
TypeScript

import React from 'react';
import { Text, Form, Title } from '@patternfly/react-core';
import KeyboardDropDown from './components/KeyboardDropDown';
import LanguagesDropDown from './components/LanguagesDropDown';
const LocaleStep = () => {
return (
<Form>
<Title headingLevel="h1" size="xl">
Locale
</Title>
<Text>Select the locale for your image.</Text>
<LanguagesDropDown />
<KeyboardDropDown />
</Form>
);
};
export default LocaleStep;