import { h } from 'preact'; import ActivityIndicator from './components/ActivityIndicator'; import Card from './components/Card'; import CameraImage from './components/CameraImage'; import Events from './Events'; import Heading from './components/Heading'; import { route } from 'preact-router'; import { useConfig } from './api'; import { useMemo } from 'preact/hooks'; export default function Cameras() { const { data: config, status } = useConfig(); if (!config) { return
loading…
; } return (