import type { ReactNode } from "react"; import { useSightingFeed } from "../../hooks/useSightingFeed"; import { SightingFeedContext } from "../SightingFeedContext"; type SightingFeedProviderProps = { url: string; children: ReactNode; side: string; }; export const SightingFeedProvider = ({ children, url, side, }: SightingFeedProviderProps) => { const { sightings, selectedRef, setSelectedRef, effectiveSelected, mostRecent, isPending, noSighting, } = useSightingFeed(url); return ( {children} ); };