import { multiline } from 'common/string'; import { Fragment } from 'inferno'; import { useBackend } from '../backend'; import { Button, LabeledList, NoticeBox, Section } from '../components'; // This is more or less a direct port from old tgui, with some slight // text cleanup. But yes, it actually worked like this. export const CentcomPodLauncher = props => { const { act, data } = useBackend(props); return ( To use this, simply spawn the atoms you want in one of the five Centcom Supplypod Bays. Items in the bay will then be launched inside your supplypod, one turf-full at a time! You can optionally use the following buttons to configure how the supplypod acts.
); };