MDK Logo
UI Kitreact-devkitComponentsFoundationWidgets

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";
PropStatusTypeDefaultDescription
dataOptionalUnknownRecord | 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>)