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 ParentWaitingTable from "./ParentWaitingTable"; 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...

More Task
{/*
*/}
banner
{} {/*
*/} {/*

*/} {/* Lock and Lob x Fiesta Spurs*/} {/*

*/} {/* */} {/* ID : 2320382*/} {/**/} {/*
*/} {/* /!* user *!/*/} {/*
*/} {/*
*/} {/* */} {/*
*/} {/*
*/} {/*

*/} {/* Brokln Simons*/} {/*

*/} {/*

*/} {/* @broklinslam_75*/} {/*

*/} {/*
*/} {/*
*/}
); }