import React from 'react'; import { Icon, For } from 'components'; import { FormattedMessage as T } from 'components'; import { getFooterLinks } from 'config/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 (

{' '} {'+21892-738-1987'}

); } /** * 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 (
); }