فهرست منبع

fix node export

AykutSarac 3 سال پیش
والد
کامیت
7e2c760951
1فایلهای تغییر یافته به همراه6 افزوده شده و 2 حذف شده
  1. 6 2
      src/components/CustomNode/index.tsx

+ 6 - 2
src/components/CustomNode/index.tsx

@@ -18,7 +18,7 @@ const baseLabelStyle = {
   strokeWidth: 0,
 };
 
-export const CustomNode = React.memo((nodeProps: NodeProps) => {
+const CustomNode = (nodeProps: NodeProps) => {
   const { properties: data } = nodeProps;
 
   return (
@@ -52,4 +52,8 @@ export const CustomNode = React.memo((nodeProps: NodeProps) => {
       }}
     </Node>
   );
-});
+};
+
+const MemoizedCustomNode = React.memo(CustomNode);
+
+export { MemoizedCustomNode as CustomNode };