Wizard: Basic Locale step

This adds Locale step basics and file structure.
This commit is contained in:
regexowl 2024-11-25 16:28:58 +01:00 committed by Lucas Garfield
parent c268267146
commit 6e97304327
20 changed files with 135 additions and 3 deletions

View file

@ -0,0 +1,9 @@
import React from 'react';
import { FormGroup } from '@patternfly/react-core';
const KeyboardInput = () => {
return <FormGroup isRequired={false} label="Keyboard"></FormGroup>;
};
export default KeyboardInput;