// 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 OPC UA form. * @param props The properties for the OPC UA form * @returns The OPC UA form */ export default function OpcUaForm(props: FormProps): JSX.Element { const { connection, onChange, errors } = props; return ( <>