Most of the interface done
This commit is contained in:
parent
4eea7769ff
commit
be8ff3466a
32 changed files with 983 additions and 7 deletions
26
ui/src/routes/history/+page.svelte
Normal file
26
ui/src/routes/history/+page.svelte
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
<script>
|
||||
import {
|
||||
Col,
|
||||
Container,
|
||||
Row,
|
||||
Icon,
|
||||
} from 'sveltestrap';
|
||||
|
||||
import CardStatAlarms from '../../components/CardStatAlarms.svelte';
|
||||
import CardStatTimeAwaking from '../../components/CardStatTimeAwaking.svelte';
|
||||
import CardStatRoutines from '../../components/CardStatRoutines.svelte';
|
||||
</script>
|
||||
|
||||
<Container fluid class="flex-fill d-flex flex-column justify-content-center py-2">
|
||||
<Row cols={{xs: 1, md: 2, lg: 3}}>
|
||||
<Col class="mb-4">
|
||||
<CardStatAlarms />
|
||||
</Col>
|
||||
<Col class="mb-4">
|
||||
<CardStatTimeAwaking />
|
||||
</Col>
|
||||
<Col class="mb-4">
|
||||
<CardStatRoutines />
|
||||
</Col>
|
||||
</Row>
|
||||
</Container>
|
||||
Loading…
Add table
Add a link
Reference in a new issue