// @ts-nocheck import * as R from 'ramda'; import { useEffect } from 'react'; import { Stack } from '@/components'; import { PreferencesBrandingBoot } from './PreferencesBrandingBoot'; import { PreferencesBrandingForm } from './PreferencesBrandingForm'; import { PreferencesBrandingFormContent, PreferencesBrandingFormFooter, } from './PreferencesBrandingFormContent'; import { withDashboardActions } from '@/containers/Dashboard/withDashboardActions'; function PreferencesBrandingPageRoot({ changePreferencesPageTitle }) { useEffect(() => { changePreferencesPageTitle('Branding'); }, [changePreferencesPageTitle]); return ( ); } export default R.compose(withDashboardActions)(PreferencesBrandingPageRoot);