15 lines
309 B
Svelte
15 lines
309 B
Svelte
<script lang="ts">
|
|
import { ControlSection, StatusSection } from '$lib/components';
|
|
</script>
|
|
|
|
<div class=" mx-auto px-2 py-4">
|
|
<div class="grid grid-cols-1 gap-3 md:grid-cols-2 lg:grid-cols-3">
|
|
<div>
|
|
<ControlSection />
|
|
</div>
|
|
|
|
<div class="col-span-2">
|
|
<StatusSection />
|
|
</div>
|
|
</div>
|
|
</div>
|