bitburner-src/src/Bladeburner/ui/GeneralActionPage.tsx

22 lines
676 B
TypeScript
Raw Normal View History

2021-06-18 22:22:12 +02:00
import * as React from "react";
import { GeneralActionList } from "./GeneralActionList";
import { IBladeburner } from "../IBladeburner";
2021-08-16 07:35:05 +02:00
import { IPlayer } from "../../PersonObjects/IPlayer";
2021-06-18 22:22:12 +02:00
interface IProps {
2021-09-05 01:09:30 +02:00
bladeburner: IBladeburner;
player: IPlayer;
2021-06-18 22:22:12 +02:00
}
export function GeneralActionPage(props: IProps): React.ReactElement {
2021-09-05 01:09:30 +02:00
return (
<>
<p style={{ display: "block", margin: "4px", padding: "4px" }}>
2021-09-09 05:47:34 +02:00
These are generic actions that will assist you in your Bladeburner duties. They will not affect your Bladeburner
rank in any way.
2021-09-05 01:09:30 +02:00
</p>
2021-09-09 05:47:34 +02:00
<GeneralActionList bladeburner={props.bladeburner} player={props.player} />
2021-09-05 01:09:30 +02:00
</>
);
}