import * as React from "react"; import { StepParams } from "../interfaces"; import { InnerIf } from "./tile_if/index"; export function TileIf(props: StepParams) { if (props.currentStep.kind === "_if") { return ; } else { return

{"Expected `_if` node"}

; } }