MicroBTSettings
Settings form for a MicroBT container with vendor-specific operating limits. Settings form for MicroBT containers with temperature threshold configuration.
Settings form for a MicroBT container with vendor-specific operating limits.
Settings form for MicroBT containers with temperature threshold configuration.
import { MicroBTSettings } from "@tetherto/mdk-react-devkit";| Prop | Status | Type | Default | Description |
|---|---|---|---|---|
data | Optional | Device | undefined | — | Device data |
containerSettings | Optional | { thresholds?: Record<string, unknown> | undefined; } | null | undefined | — | Container settings with custom thresholds |
Usage
Settings form for a MicroBT container with vendor-specific operating limits (temperature thresholds, cooling parameters).
Minimal example
import { MicroBTSettings } from "@tetherto/mdk-react-devkit";
<MicroBTSettings data={device} />
Example
import { MicroBTSettings } from '@tetherto/mdk-react-devkit'export const MicroBTSettingsExample = () => ( <div className="mdk-example-row"> <MicroBTSettings data={undefined} containerSettings={null} /> </div>)