I want to display type using customNode component #4297
Unanswered
Muhammad1Siddique
asked this question in
Layouting
Replies: 1 comment
-
Please try to format your issues so that we can read them https://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
{
id: item.uuid,
type: item.type,
data: {
label: (
),
expanded: true,
},
position: { x: 0, y: 0 },
}
i want to display type in the customNode component here is the code
const label = getLabel(data);
return (
<section id='proflow' style={{zIndex: "10!important"}}>
{type}
);
}
but I received custom again type object
Beta Was this translation helpful? Give feedback.
All reactions