// @ts-nocheck import React from 'react'; import { Icon, For, FormattedMessage as T, Stack } from '@/components'; import { getFooterLinks } from '@/constants/footerLinks'; import { useAuthActions } from '@/hooks/state'; import style from './SetupLeftSection.module.scss'; import { Text } from '@blueprintjs/core'; import { Config } from '@/config'; import { useHistory } from 'react-router-dom'; /** * Footer item link. */ function FooterLinkItem({ title, link }) { return (
); } /** * Setup left section footer. */ function SetupLeftSectionFooter() { // Retrieve the footer links. const footerLinks = getFooterLinks(); const handleDemoBtnClick = () => { window.open(Config.oneClickDemo.demoUrl); }; return (