import * as React from 'react';
import PropTypes from 'prop-types';
import AppConnectionRow from 'components/AppConnectionRow';
import NoResultFound from 'components/NoResultFound';
import useFormatMessage from 'hooks/useFormatMessage';
import * as URLS from 'config/urls';
import useAppConnections from 'hooks/useAppConnections';
function AppConnections(props) {
const { appKey } = props;
const formatMessage = useFormatMessage();
const { data } = useAppConnections(appKey);
const appConnections = data?.data || [];
const hasConnections = appConnections?.length;
if (!hasConnections) {
return (
);
}
return (
<>
{appConnections.map((appConnection) => (
))}
>
);
}
AppConnections.propTypes = {
appKey: PropTypes.string.isRequired,
};
export default AppConnections;