9 lines
215 B
TypeScript
9 lines
215 B
TypeScript
import React from 'react';
|
|
|
|
import { FormGroup } from '@patternfly/react-core';
|
|
|
|
const KeyboardInput = () => {
|
|
return <FormGroup isRequired={false} label="Keyboard"></FormGroup>;
|
|
};
|
|
|
|
export default KeyboardInput;
|