All files / src/components SlackConnectOverlay.tsx

0% Statements 0/10
0% Branches 0/1
0% Functions 0/3
0% Lines 0/9

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36                                                                       
import Overlay from "./Overlay";
import CustomButton from "./common/CustomButton";
 
const SlackConnectOverlay = ({ isOpen, toggleOverlay }) => {
  const close = () => {
    toggleOverlay();
  };
 
  Iif (!isOpen) return;
 
  return (
    <Overlay close={close} visible={isOpen}>
      <div className="bg-white p-4 rounded max-w-xs">
        <header className="text-gray-800 text-sm">
          Join the Doctor Droid Slack Community and connect with other users.
        </header>
        <div className="flex flex-wrap gap-2 mt-4">
          <CustomButton onClick={toggleOverlay}>Cancel</CustomButton>
          <CustomButton
            onClick={() =>
              window.open(
                "https://doctor-droid-public.slack.com/",
                "_blank",
                "noopener",
              )
            }>
            Join
          </CustomButton>
        </div>
      </div>
    </Overlay>
  );
};
 
export default SlackConnectOverlay;