import { Box } from "@mui/material"; import SearchFiltersSortBar from "../Components/Molecules/SearchFiltersSortBar"; import GovernanceActionsList from "../Components/Molecules/GovernanceActionsList"; import { useAppContext } from "../contexts/AppContext"; import { Typography } from "../Components/Atoms/Typography"; import { useScreenDimension } from "../hooks/useDimensions"; import { useTranslation } from "../contexts/I18nContext"; export default function Outcomes() { const { walletAPI } = useAppContext(); const { isMobile } = useScreenDimension(); const { t } = useTranslation(); return ( {!walletAPI?.isEnabled && ( {t("outcomesList.title")} )} ); }