Skip to content

Commit 1811f2d

Browse files
committed
prevent circular import
1 parent 17897b3 commit 1811f2d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/components/NestableDraggableFlatList.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
import React, { useMemo, useRef, useState } from "react";
22
import { findNodeHandle, LogBox } from "react-native";
33
import Animated, { add } from "react-native-reanimated";
4-
import DraggableFlatList, { DraggableFlatListProps } from "../index";
4+
import { DraggableFlatListProps } from "../types";
5+
import DraggableFlatList from "../components/DraggableFlatList";
56
import { useNestableScrollContainerContext } from "../context/nestableScrollContainerContext";
67
import { useNestedAutoScroll } from "../hooks/useNestedAutoScroll";
78

0 commit comments

Comments
 (0)