summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--front/src/routes/bots.jsx4
1 files changed, 4 insertions, 0 deletions
diff --git a/front/src/routes/bots.jsx b/front/src/routes/bots.jsx
index c2f1565..7f60d61 100644
--- a/front/src/routes/bots.jsx
+++ b/front/src/routes/bots.jsx
@@ -1,6 +1,7 @@
import Modal from "react-modal";
import { useAuthContext } from "../context/auth_context";
import { useEffect, useState } from "react";
+import { Link } from "react-router-dom";
Modal.setAppElement("#root");
@@ -60,6 +61,9 @@ const BotButton = ({ onSave, givenBot }) => {
return (
<div>
+ <ul>
+ <li>It is Highly Recommend to peek at <Link to="/man-pages">the man pages</Link>.</li>
+ </ul>
<button className="button" onClick={() => setOpen(true)}>
{givenBot ? "Update" : "+ Add"} Bot
</button>