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 | import { Link } from "react-router-dom"; const NoExistingPlaybookRun = () => { return ( <> <div className="justify-center w-full items-center flex flex-col py-8"> <img src="/logo/logo.png" alt="logo" className="h-20 mb-4 " /> <div className="text-sm text-gray-500 mb-2 text-center"> Playbook hasn't been run yet </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 NoExistingPlaybookRun; |