import * as React from "react"; import { DangerZoneProps } from "../interfaces"; import { Row, Col } from "../../../ui/index"; import { Header } from "./header"; import { Collapse } from "@blueprintjs/core"; import { Content } from "../../../constants"; import { t } from "../../../i18next_wrapper"; export function DangerZone(props: DangerZoneProps) { const { dispatch, onReset, botDisconnected } = props; const { danger_zone } = props.controlPanelState; return

{t(Content.RESTORE_DEFAULT_HARDWARE_SETTINGS)}

; }