import * as React from "react"; import { GeneralActionList } from "./GeneralActionList"; import { IBladeburner } from "../IBladeburner"; interface IProps { bladeburner: IBladeburner; } 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.

); }