blob: 1ec1a54998f5d13eb45faddfb38c1db5affa4f8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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>
);
}
|