import { useBackend } from '../backend'; import { Section, Button, Box } from '../components'; import { Window } from '../layouts'; export const StationAlertConsole = () => { return ( ); }; export const StationAlertConsoleContent = (props, context) => { const { act, data } = useBackend(context); const { categories = [] } = data; return categories.map((category) => (
)); };