MDK Logo
UI Kitreact-devkitComponentsFoundationWidgets

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";
PropStatusTypeDefaultDescription
dataOptionalDevice | undefinedDevice data
containerSettingsOptional{ thresholds?: Record<string, unknown> | undefined; } | null | undefinedContainer 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>)