import { Fragment } from 'inferno'; import { useBackend } from '../backend'; import { Button, LabeledList, NoticeBox, Section } from '../components'; export const BankMachine = props => { const { act, data } = useBackend(props); const { current_balance, siphoning, station_name, } = data; return (
act(siphoning ? 'halt' : 'siphon')} /> )}> {current_balance + ' cr'}
Authorized personnel only
); };