Răsfoiți Sursa

add component

Shun Miyazawa 5 ani în urmă
părinte
comite
20d2bcecba

+ 25 - 0
src/client/js/components/Admin/SlackIntegration/CustomBotIntegrationCard.jsx

@@ -0,0 +1,25 @@
+import React from 'react';
+import { useTranslation } from 'react-i18next';
+import PropTypes from 'prop-types';
+
+const CustomBotIntegrationCard = (props) => {
+
+  const { t } = useTranslation();
+
+  return (
+  <>
+
+    <p>CustomBotIntegrationCardCompornent</p>
+
+  </>
+  );
+};
+
+CustomBotIntegrationCard.PropTypes = {
+  currentBotType: PropTypes.string,
+  siteName: PropTypes.string,
+  slackWSNameInWithoutProxy: PropTypes.string,
+  isSetupSlackBot: PropTypes.bool
+}
+
+export default CustomBotIntegrationCard;