import React from "react"; import Skeleton, { SkeletonTheme } from "react-loading-skeleton"; import "react-loading-skeleton/dist/skeleton.css"; interface StopItemSkeletonProps { showId?: boolean; stopId?: number; } const StopItemSkeleton: React.FC = ({ showId = false, stopId, }) => { <<<<<<< HEAD return (
  • {showId && stopId && ( <>({stopId}) )}
  • ); ======= return (
  • {showId && stopId && <>({stopId}) }
  • ); >>>>>>> 88e0621 (Improve gallery scroll indicators and format code) }; export default StopItemSkeleton;