import CardHeader from "../../../../components/CardHeader"; import Card from "../../../../components/ui/Card"; import type { SightingType } from "../../../../utils/types"; import SightingItem from "./SightingItem"; type SightingStackProps = { sightings: SightingType[]; }; const SightingStack = ({ sightings }: SightingStackProps) => { return ( {sightings.map((sighting) => ( ))} ); }; export default SightingStack;