summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElizabeth (Lizzy) Hunt <elizabeth.hunt@simponic.xyz>2023-11-20 12:55:30 -0700
committerGitHub <noreply@github.com>2023-11-20 12:55:30 -0700
commit6ffe0ceb6e16d4f554266bceb1ee8fe4a3d6e0ad (patch)
tree5c32eae0f3c91b39afea2e222a4185d9569ab4f2
parent10efe53e6de5c91229f7c0abb3d279f3db2c31d4 (diff)
downloadchessh-6ffe0ceb6e16d4f554266bceb1ee8fe4a3d6e0ad.tar.gz
chessh-6ffe0ceb6e16d4f554266bceb1ee8fe4a3d6e0ad.zip
link to man pages in bots tab
-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>