diff --git a/examples/vite-app/src/examples/UseUpdateNodeInternals/CustomNode.tsx b/examples/vite-app/src/examples/UseUpdateNodeInternals/CustomNode.tsx index 1684656b..a11c68d0 100644 --- a/examples/vite-app/src/examples/UseUpdateNodeInternals/CustomNode.tsx +++ b/examples/vite-app/src/examples/UseUpdateNodeInternals/CustomNode.tsx @@ -1,4 +1,4 @@ -import React, { useState, memo, FC, useMemo, CSSProperties } from 'react'; +import { useState, memo, FC, useMemo, CSSProperties } from 'react'; import { Handle, Position, NodeProps, useUpdateNodeInternals } from 'reactflow'; const nodeStyles: CSSProperties = { padding: 10, border: '1px solid #ddd' }; @@ -23,7 +23,7 @@ const CustomNode: FC = ({ id }) => {