import { chakra } from '@chakra-ui/system' import { useTypebot } from 'contexts/TypebotContext/TypebotContext' import React from 'react' import { DrawingEdge } from './DrawingEdge' import { Edge } from './Edge' export const Edges = () => { const { typebot } = useTypebot() return ( {typebot?.edges.allIds.map((edgeId) => ( ))} ) }