// 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 { FormProps } from '../../util/types'; /** * Renders the Modbus TCP form. * @param props The properties for the Modbus TCP form * @returns The Modbus TCP form */ export default function ModbusTcpForm(props: FormProps): JSX.Element { const { connection, onChange, errors } = props; return ( <>