// @ts-nocheck import React from 'react'; import { Icon, For, FormattedMessage as T } from '@/components'; import { getFooterLinks } from '@/constants/footerLinks'; import { useAuthActions } from '@/hooks/state'; /** * Footer item link. */ function FooterLinkItem({ title, link }) { return ( ); } /** * Setup left section footer. */ function SetupLeftSectionFooter() { // Retrieve the footer links. const footerLinks = getFooterLinks(); return (
); } /** * Setup left section header. */ function SetupLeftSectionHeader() { const { setLogout } = useAuthActions(); // Handle logout link click. const onClickLogout = () => { setLogout(); }; return (

); } /** * Wizard setup left section. */ export default function SetupLeftSection() { return (
); }