mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-12-04 05:23:46 +01:00
19 lines
686 B
TypeScript
19 lines
686 B
TypeScript
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 (<>
|
|
<p style={{display: 'block', margin: '4px', padding: '4px'}}>
|
|
These are generic actions that will assist you in your Bladeburner
|
|
duties. They will not affect your Bladeburner rank in any way.
|
|
</p>
|
|
<GeneralActionList bladeburner={props.bladeburner} player={props.player} />
|
|
</>);
|
|
} |