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

17 lines
588 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-06-18 22:22:12 +02:00
interface IProps {
bladeburner: IBladeburner;
2021-06-18 22:22:12 +02:00
}
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} />
</>);
}