import { Flex, Stack } from '@chakra-ui/react' import { StepNodeOverlay } from 'components/board/graph/BlockNode/StepNode' import { useTypebot } from 'contexts/TypebotContext/TypebotContext' export const StepsList = ({ stepIds }: { stepIds: string[] }) => { const { typebot } = useTypebot() return ( {typebot && stepIds.map((stepId) => ( ))} ) }