import * as React from "react"; import { StepParams } from "../interfaces"; import { Content } from "../../constants"; import { StepWrapper, StepHeader, StepContent } from "../step_ui/index"; import { t } from "../../i18next_wrapper"; export function TileShutdown(props: StepParams) { const { dispatch, currentStep, index, currentSequence } = props; const className = "shutdown-step"; return

{t(Content.SHUTDOWN_STEP)}

; }