diff options
author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2023-11-20 13:22:33 -0700 |
---|---|---|
committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2023-11-20 13:22:33 -0700 |
commit | 7596482be7bee64b3ea0a98004a8978baaa0a79d (patch) | |
tree | a4a30b296068128f490b35da25a3798f20bba878 | |
parent | 87954f6ddcb6760cc418faa6c50f1415b565adfa (diff) | |
download | chessh-7596482be7bee64b3ea0a98004a8978baaa0a79d.tar.gz chessh-7596482be7bee64b3ea0a98004a8978baaa0a79d.zip |
-rw-r--r-- | front/src/routes/bots.jsx | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/front/src/routes/bots.jsx b/front/src/routes/bots.jsx index 48f285a..157a3d0 100644 --- a/front/src/routes/bots.jsx +++ b/front/src/routes/bots.jsx @@ -61,12 +61,6 @@ 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> @@ -185,6 +179,14 @@ export const Bots = () => { return ( <> <h1>Bots</h1> + <div> + <ul> + <li> + It is Highly Recommend to peek at{" "} + <Link to="/man-pages">the man pages</Link>. + </li> + </ul> + </div> <BotButton onSave={refreshBots} /> <div className="key-card-collection"> |