import { useEffect } from 'react'; import { useNavigate } from 'react-router-dom'; import { keyframes } from '@emotion/react'; import styled from '@emotion/styled'; import { useIsLogged } from '../hooks/useIsLogged'; const EmptyContainer = styled.div` align-items: center; display: flex; height: 100%; justify-content: center; width: 100%; `; const fadeIn = keyframes` from { opacity: 0; } to { opacity: 1; } `; const FadeInStyle = styled.div` animation: ${fadeIn} 1s forwards; opacity: 0; `; export function RequireNotAuth({ children, }: { children: JSX.Element; }): JSX.Element { const navigate = useNavigate(); const isLogged = useIsLogged(); useEffect(() => { if (isLogged) { navigate('/'); } }, [isLogged, navigate]); if (isLogged) { return ( Please hold on a moment, we're directing you to the app... ); } return children; }