mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-12-06 13:34:13 +03:00
41 lines
1.2 KiB
TypeScript
41 lines
1.2 KiB
TypeScript
|
|
import Heading from "@/components/ui/heading";
|
||
|
|
import { Label } from "@/components/ui/label";
|
||
|
|
import {
|
||
|
|
Select,
|
||
|
|
SelectContent,
|
||
|
|
SelectGroup,
|
||
|
|
SelectItem,
|
||
|
|
SelectLabel,
|
||
|
|
SelectTrigger,
|
||
|
|
SelectValue,
|
||
|
|
} from "@/components/ui/select";
|
||
|
|
import { Switch } from "@/components/ui/switch";
|
||
|
|
|
||
|
|
export default function General() {
|
||
|
|
return (
|
||
|
|
<>
|
||
|
|
<Heading as="h2">Settings</Heading>
|
||
|
|
<div className="flex items-center space-x-2 mt-5">
|
||
|
|
<Switch id="lowdata" checked={false} onCheckedChange={() => {}} />
|
||
|
|
<Label htmlFor="lowdata">Low Data Mode (this device only)</Label>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div className="flex items-center space-x-2 mt-5">
|
||
|
|
<Select>
|
||
|
|
<SelectTrigger className="w-[180px]">
|
||
|
|
<SelectValue placeholder="Another General Option" />
|
||
|
|
</SelectTrigger>
|
||
|
|
<SelectContent>
|
||
|
|
<SelectGroup>
|
||
|
|
<SelectLabel>Live Mode</SelectLabel>
|
||
|
|
<SelectItem value="jsmpeg">JSMpeg</SelectItem>
|
||
|
|
<SelectItem value="mse">MSE</SelectItem>
|
||
|
|
<SelectItem value="webrtc">WebRTC</SelectItem>
|
||
|
|
</SelectGroup>
|
||
|
|
</SelectContent>
|
||
|
|
</Select>
|
||
|
|
</div>
|
||
|
|
</>
|
||
|
|
);
|
||
|
|
}
|