import * as React from "react"; import { GeneralActionList } from "./GeneralActionList"; import { IBladeburner } from "../IBladeburner"; import { IPlayer } from "../../PersonObjects/IPlayer"; interface IProps { bladeburner: IBladeburner; player: IPlayer; } export function GeneralActionPage(props: IProps): React.ReactElement { return (<>

These are generic actions that will assist you in your Bladeburner duties. They will not affect your Bladeburner rank in any way.

); }