All files / src/components/Workflows/triggers NoExistingTrigger.tsx

0% Statements 0/4
100% Branches 0/0
0% Functions 0/1
0% Lines 0/4

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                                           
import { Link } from "react-router-dom";
 
const NoExistingTrigger = () => {
  return (
    <div className="justify-center w-full items-center flex flex-col py-8 border">
      <img src="/logo/logo.png" alt="logo" className="h-20 mb-4" />
      <div className="text-sm text-gray-500 mb-2 text-center">
        No Alerts found
      </div>
      <div>
        <Link to="https://docs.drdroid.io" target="_blank">
          <div className="text-sm rounded-lg py-2 px-2 cursor-pointer border-violet-600 text-violet-600 dura hover:text-violet-700 underline flex">
            Check Documentation
          </div>
        </Link>
      </div>
    </div>
  );
};
 
export default NoExistingTrigger;