import React from "react"; import ImportAccountsModal from "./ImportAccountsModal.jsx"; import NotificationsModal from "./NotificationsModal.jsx"; import InfoModal from "./InfoModal.jsx"; import ToastStack from "./ToastStack.jsx"; import ConfirmModal from "./ConfirmModal.jsx"; export default function AppOverlays({ importModalOpen, setImportModalOpen, manualLoginOpen, setManualLoginOpen, hasSelectedTask, loginForm, setLoginForm, startLogin, completeLogin, loginStatus, tdataForm, setTdataForm, importTdata, tdataLoading, tdataResult, explainTdataError, notificationsOpen, setNotificationsOpen, notificationsModalRef, notifications, filteredNotifications, notificationFilter, setNotificationFilter, setNotifications, infoOpen, setInfoOpen, infoTab, setInfoTab, liveConfirmOpen, setLiveConfirmOpen, liveConfirmContext, onConfirmLiveInvite, onCancelLiveInvite, toasts, dismissToast }) { return ( <> setImportModalOpen(false)} manualLoginOpen={manualLoginOpen} setManualLoginOpen={setManualLoginOpen} hasSelectedTask={hasSelectedTask} loginForm={loginForm} setLoginForm={setLoginForm} startLogin={startLogin} completeLogin={completeLogin} loginStatus={loginStatus} tdataForm={tdataForm} setTdataForm={setTdataForm} importTdata={importTdata} tdataLoading={tdataLoading} tdataResult={tdataResult} explainTdataError={explainTdataError} /> setNotificationsOpen(false)} notificationsModalRef={notificationsModalRef} notifications={notifications} filteredNotifications={filteredNotifications} notificationFilter={notificationFilter} setNotificationFilter={setNotificationFilter} setNotifications={setNotifications} /> setInfoOpen(false)} infoTab={infoTab} setInfoTab={setInfoTab} /> ); }