import React from 'react'; import { Radio, Content, Form, Title, FormGroup, TextInput, Gallery, GalleryItem, HelperText, HelperTextItem, Button, } from '@patternfly/react-core'; import { ExternalLinkAltIcon } from '@patternfly/react-icons'; import { AwsAccountId } from './AwsAccountId'; import { AwsSourcesSelect } from './AwsSourcesSelect'; import { useAppDispatch, useAppSelector } from '../../../../../store/hooks'; import { changeAwsAccountId, changeAwsShareMethod, changeAwsSourceId, selectAwsAccountId, selectAwsShareMethod, } from '../../../../../store/wizardSlice'; import { ValidatedInput } from '../../../ValidatedInput'; import { isAwsAccountIdValid } from '../../../validators'; export type AwsShareMethod = 'manual' | 'sources'; const SourcesButton = () => { return ( } iconPosition="right" isInline href={'settings/sources'} > Create and manage sources here ); }; const Aws = () => { const dispatch = useAppDispatch(); const shareMethod = useAppSelector(selectAwsShareMethod); const shareWithAccount = useAppSelector(selectAwsAccountId); return (
); }; export default Aws;