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 (