MDK Logo
ReferenceUI KitReactUI Kit foundationComponentsSettings

SettingsDashboard

Top-level settings landing page — composes the per-section settings cards in a single grid.

Top-level settings landing page — composes the per-section settings cards in a single grid.

import { SettingsDashboard } from "@tetherto/mdk-react-devkit";
PropStatusTypeDefaultDescription
dangerActionsOptionalActionButtonProps[] | undefined
headerControlsPropsOptionalHeaderControlsSettingsProps | undefined
rbacControlPropsOptionalRBACControlSettingsProps | undefined
importExportPropsOptionalImportExportSettingsProps | undefined
featureFlagsPropsOptionalFeatureFlagsSettingsProps | undefined
showFeatureFlagsOptionalboolean | undefined
classNameOptionalstring | undefined

Usage

Top-level settings page that composes all per-section settings cards (header controls, RBAC, import/export, feature flags) in a single grid layout.

Example

import { SettingsDashboard } from '@tetherto/mdk-react-devkit'export const SettingsDashboardExample = () => (  <div className="mdk-example-row">    <SettingsDashboard showFeatureFlags={false} />  </div>)