import { useState } from 'react'; import { Form, FormGroup, ActionGroup, TextInput, Button } from '@patternfly/react-core'; import RhUiCheckCircleFillIcon from '@patternfly/react-icons/dist/esm/icons/rh-ui-check-circle-fill-icon'; export const ButtonProgress: React.FunctionComponent = () => { const [loginState, setLoginState] = useState<'notLoggedIn' | 'loading' | 'loggedIn'>('notLoggedIn'); return (
); };