import { Flex, Text } from '@chakra-ui/react' import { Step, StartStep, StepType } from 'models' export const StepContent = (props: Step | StartStep) => { switch (props.type) { case StepType.TEXT: { return ( Click to edit...

` : props.content.html, }} >
) } case StepType.TEXT_INPUT: { return Type your answer... } case StepType.START: { return {props.label} } default: { return No input } } }