import { Box, Section, Button, Grid } from '../components'; import { useBackend } from '../backend'; export const EmergencyShuttleConsole = props => { const { act, data } = useBackend(props); const { timer_str, enabled, emagged, engines_started, authorizations_remaining, authorizations = [], } = data; return (
{timer_str} ENGINES: {engines_started ? 'Online' : 'Idle'}
act('abort')} /> )}>
); };