reveil/ui/src/routes/alarms/+page.svelte

27 lines
667 B
Svelte

<script>
import {
Col,
Container,
Row,
Icon,
} from '@sveltestrap/sveltestrap';
import AlarmSingleList from '$lib/components/AlarmSingleList.svelte';
import AlarmRepeatedList from '$lib/components/AlarmRepeatedList.svelte';
import AlarmExceptionList from '$lib/components/AlarmExceptionList.svelte';
</script>
<Container fluid class="flex-fill d-flex flex-column py-2">
<Row>
<Col class="mb-4" md={4}>
<AlarmSingleList />
</Col>
<Col class="mb-4" md={4}>
<AlarmRepeatedList />
</Col>
<Col class="mb-4" md={4}>
<AlarmExceptionList />
</Col>
</Row>
</Container>