import * as React from "react"; import { PinGuardMCUInputGroup } from "../pin_guard_input_group"; import { PinGuardProps } from "../interfaces"; import { Header } from "./header"; import { Collapse, Position } from "@blueprintjs/core"; import { Row, Col, Help } from "../../../ui/index"; import { ToolTips, DeviceSetting } from "../../../constants"; import { t } from "../../../i18next_wrapper"; import { Highlight } from "../maybe_highlight"; import { DevSettings } from "../../../account/dev/dev_support"; export function PinGuard(props: PinGuardProps) { const { pin_guard } = props.controlPanelState; const { dispatch, sourceFwConfig, resources } = props; const newFormat = DevSettings.futureFeaturesEnabled(); return
{!newFormat && } ; }