import { View } from "components/styledComponents"; import React from "react"; import { useTheme } from "react-native-paper"; import Confetti from "./Confetti"; import IndeterminateProgressBar from "./IndeterminateProgressBar"; const count = 30; const duration = 7000; const ActivityAnimation = ( ) => { const theme = useTheme(); return ( {/* A view that animates in a loop */} {/* A view that rains confetti of random iconic taxon icons */} ); }; export default ActivityAnimation;