import React, { useState } from "react"; import { Link } from "react-router-dom"; import { toast } from "react-toastify"; import activeAidsBanner from "../../assets/images/kids-waiting.jpg"; import HeroUser from "../../assets/images/hero-user.png"; import CountDown from "../Helpers/CountDown"; export default function ParentWaiting({ className }) { const [addFavorite, setValue] = useState(false); const favoriteHandler = () => { if (!addFavorite) { setValue(true); toast.success("Added to Favorite List"); } else { setValue(false); toast.warn("Remove to Favorite List"); } }; return ( <>

Waiting for Parent to Get Started...

banner

Lock and Lob x Fiesta Spurs

ID : 2320382
{/* user */}

Brokln Simons

@broklinslam_75

View Art Work
); }