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