import { useState } from 'react'; import { Checkbox, TextInput } from '@patternfly/react-core'; export const TextInputReadOnly: React.FunctionComponent = () => { const [isPlainChecked, setIsPlainChecked] = useState(false); return ( <>