// @ts-nocheck import React, { useEffect } from 'react'; import { DashboardInsider } from '@/components/Dashboard'; import HomepageContent from './HomepageContent'; import withDashboardActions from '@/containers/Dashboard/withDashboardActions'; import withCurrentOrganization from '@/containers/Organization/withCurrentOrganization'; import { compose } from '@/utils'; /** * Dashboard homepage. */ function DashboardHomepage({ // #withDashboardActions changePageTitle, // #withCurrentOrganization organization, }) { useEffect(() => { changePageTitle(organization.name); }, [organization.name, changePageTitle]); return ( ); } export default compose( withDashboardActions, withCurrentOrganization(({ organization }) => ({ organization })), )(DashboardHomepage);