CustomBotIntegrationCard.jsx 503 B

12345678910111213141516171819202122232425
  1. import React from 'react';
  2. import { useTranslation } from 'react-i18next';
  3. import PropTypes from 'prop-types';
  4. const CustomBotIntegrationCard = (props) => {
  5. const { t } = useTranslation();
  6. return (
  7. <>
  8. <p>CustomBotIntegrationCardCompornent</p>
  9. </>
  10. );
  11. };
  12. CustomBotIntegrationCard.PropTypes = {
  13. currentBotType: PropTypes.string,
  14. siteName: PropTypes.string,
  15. slackWSNameInWithoutProxy: PropTypes.string,
  16. isSetupSlackBot: PropTypes.bool
  17. }
  18. export default CustomBotIntegrationCard;