/** * React component for a selectable option on the Faction UI. These * options including working for the faction, hacking missions, purchasing * augmentations, etc. */ import * as React from "react"; import { StdButton } from "../../ui/React/StdButton"; type IProps = { buttonText: string; infoText: string; onClick: (e: React.MouseEvent) => void; }; export class Option extends React.Component { render(): React.ReactNode { return (

{this.props.infoText}

); } }