فهرست منبع

import UncontrolledTooltip

Shun Miyazawa 4 سال پیش
والد
کامیت
d6e5a90ada
1فایلهای تغییر یافته به همراه6 افزوده شده و 0 حذف شده
  1. 6 0
      src/client/js/components/Admin/SlackIntegration/CustomBotWithoutProxyIntegrationCard.jsx

+ 6 - 0
src/client/js/components/Admin/SlackIntegration/CustomBotWithoutProxyIntegrationCard.jsx

@@ -2,6 +2,8 @@ import React from 'react';
 import { useTranslation } from 'react-i18next';
 import { useTranslation } from 'react-i18next';
 import PropTypes from 'prop-types';
 import PropTypes from 'prop-types';
 
 
+import { UncontrolledTooltip } from 'reactstrap';
+
 const CustomBotWithoutProxyIntegrationCard = (props) => {
 const CustomBotWithoutProxyIntegrationCard = (props) => {
 
 
   const { t } = useTranslation();
   const { t } = useTranslation();
@@ -49,6 +51,10 @@ const CustomBotWithoutProxyIntegrationCard = (props) => {
           <div className="btn btn-primary">{ props.siteName }</div>
           <div className="btn btn-primary">{ props.siteName }</div>
         </div>
         </div>
       </div>
       </div>
+
+      <UncontrolledTooltip placement="top" fade={false} target="integration-line">
+       Hello Tooltip!!
+      </UncontrolledTooltip>
     </div>
     </div>
   );
   );
 };
 };