import React from 'react'; import { Icon } from 'UI'; import cn from 'classnames'; import { useTranslation } from 'react-i18next'; function Footer({ isSetup }: { isSetup?: boolean }) { const { t } = useTranslation(); return (
{t('Troubleshooting guide')} {t('Ask slack community')} {t('Raise an issue')}
); } export default Footer;