Skip to content

Commit

Permalink
prevent circular import
Browse files Browse the repository at this point in the history
  • Loading branch information
computerjazz committed Apr 19, 2022
1 parent 17897b3 commit 1811f2d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/NestableDraggableFlatList.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import React, { useMemo, useRef, useState } from "react";
import { findNodeHandle, LogBox } from "react-native";
import Animated, { add } from "react-native-reanimated";
import DraggableFlatList, { DraggableFlatListProps } from "../index";
import { DraggableFlatListProps } from "../types";
import DraggableFlatList from "../components/DraggableFlatList";
import { useNestableScrollContainerContext } from "../context/nestableScrollContainerContext";
import { useNestedAutoScroll } from "../hooks/useNestedAutoScroll";

Expand Down

0 comments on commit 1811f2d

Please sign in to comment.