import { useBackend } from '../backend'; import { Button, Section } from '../components'; export const AtmosAlertConsole = props => { const { act, data } = useBackend(props); const priorityAlerts = data.priority || []; const minorAlerts = data.minor || []; return (
); };