// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
import { I18n } from '@aws-amplify/core';
import Form from 'react-bootstrap/Form';
import Card from 'react-bootstrap/Card';
import { FormProps, OsiPiAuthMode } from '../../util/types';
import EmptyRow from '../../components/EmptyRow';
/**
* Renders the OSI PI form.
* @param props The properties for the OSI PI form
* @returns The OSI PI form
*/
export default function OsiPiForm(props: FormProps): JSX.Element {
const { connection, onChange, errors } = props;
return (
<>