diff options
Diffstat (limited to 'diplomacy/web/src/gui/components/help.jsx')
-rw-r--r-- | diplomacy/web/src/gui/components/help.jsx | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/diplomacy/web/src/gui/components/help.jsx b/diplomacy/web/src/gui/components/help.jsx new file mode 100644 index 0000000..1ec1a54 --- /dev/null +++ b/diplomacy/web/src/gui/components/help.jsx @@ -0,0 +1,13 @@ +import React from "react"; + +export function Help() { + return ( + <div> + <p>When building an order, press <strong>ESC</strong> to reset build.</p> + <p>Press letter associated to an order type to start building an order of this type. + <br/> Order type letter is indicated in order type name after order type radio button. + </p> + <p>In Phase History tab, use keyboard left and right arrows to navigate in past phases.</p> + </div> + ); +} |