BitdeerSettings
Settings tab for a Bitdeer container — vendor-specific configuration controls and limits. Displays container parameter settings and editable threshold forms …
Settings tab for a Bitdeer container — vendor-specific configuration controls and limits.
Displays container parameter settings and editable threshold forms for Bitdeer containers with oil temperature and tank pressure monitoring.
Includes: - Container parameter display (MAC address, serial number, etc.) - Editable threshold forms for oil temperature and tank pressure - Color-coded alerts and flash indicators - Sound alert configuration
import { BitdeerSettings } from "@tetherto/mdk-react-devkit";| Prop | Status | Type | Default | Description |
|---|---|---|---|---|
data | Optional | UnknownRecord | undefined | — | — |
Usage
Settings tab for a Bitdeer container. Renders vendor-specific parameter display (MAC, serial number) and editable threshold forms for oil temperature and tank pressure monitoring, with colour-coded alerts and sound-alert configuration.
Minimal example
import { BitdeerSettings } from "@tetherto/mdk-react-devkit";
<BitdeerSettings data={containerSettings} />
Example
import { BitdeerSettings } from '@tetherto/mdk-react-devkit'export const BitdeerSettingsExample = () => ( <div className="mdk-example-row"> <BitdeerSettings data={{}} /> </div>)