import React from 'react' import { AuthBox } from '../AuthBox/AuthBox' import { useSelector } from 'react-redux' import arrow from '../../images/arrow__login_page.png' import authImg from '../../images/auth_img.png' import cross from '../../images/cross.png' import text from '../../images/Body_Text.png' import vector from '../../images/Vector_Smart_Object.png' import { selectAuth } from '../../redux/outstaffingSlice' import { Redirect } from 'react-router-dom' import { Footer } from '../Footer/Footer' import './authForDevelopers.scss' const AuthForDevelopers = () => { const isAuth = useSelector(selectAuth) if (isAuth) { return } return (

Управление
командой

{/* 20 Специалистов

  • Рабочее
    пространство
  • Управление задачами
) } export default AuthForDevelopers