Skip to content

Commit 9d1aef1

Browse files
committed
Remove most of the JS code and tests
1 parent 0020b66 commit 9d1aef1

39 files changed

+79
-4218
lines changed

src/AnimatedFlashList.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
import { Animated } from "react-native";
22

33
import { FlashListProps } from "./FlashListProps";
4-
import { RecyclerView } from "./recyclerview/RecyclerView";
4+
import { FlashList } from "./FlashList";
55

66
// Typecast as required
77
const AnimatedFlashList =
88
Animated.createAnimatedComponent<React.ComponentType<FlashListProps<any>>>(
9-
RecyclerView
9+
FlashList
1010
);
1111

1212
export default AnimatedFlashList;

src/FlashList.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { RecyclerView as FlashList } from "./recyclerview/RecyclerView";

0 commit comments

Comments
 (0)