import { LayoutComponentDefinition } from "@vibentec/component-map" import { LayoutContext } from "@vibentec/component-map" export default function VtText({ nodes, context, }: { nodes: LayoutComponentDefinition context: LayoutContext }) { const props = nodes.config || {} return ( {props?.label && {props.label}} ) }