From 7097e8fa90cde8bf1e93e93090a05f89e18ee6f7 Mon Sep 17 00:00:00 2001 From: Nishant Shrivastva <74295596+shrinishant@users.noreply.github.com> Date: Sat, 12 Mar 2022 12:04:59 +0530 Subject: [PATCH] Delete AuthWrapper.jsx --- src/components/AuthWrapper.jsx | 77 ---------------------------------- 1 file changed, 77 deletions(-) delete mode 100644 src/components/AuthWrapper.jsx diff --git a/src/components/AuthWrapper.jsx b/src/components/AuthWrapper.jsx deleted file mode 100644 index 9958a3f6..00000000 --- a/src/components/AuthWrapper.jsx +++ /dev/null @@ -1,77 +0,0 @@ -import React from 'react' -import { useTranslation } from 'react-i18next' -import LanguageDropdown from './LanguageDropdown' -import eosIcon from '../assets/images/user-story-logo.svg' -import SocialMediaLinks from '../components/SocialMediaLinks' -import { EOS_COPYRIGHT } from 'eos-icons-react' -import { Link } from '@reach/router' -export const AuthWrapper = ({ children }) => { - return ( -
-
{children}
-
- ) -} - -export const AuthLeftContainer = () => { - const { t } = useTranslation() - - return ( -
-
-
- {t('authentication:header-left')} -
-

{t('authentication:user-stories-description')}

-
-

- {t('authentication:footer-left')} -{' '} - - Learn More - -

-
- -
-
- ) -} - -export const AuthRightContainer = ({ children, logo }) => { - const { t, i18n } = useTranslation() - - return ( -
-
-
- - EOS Logo - -
- -
- {children} -
- - - {t('authentication:footer-right')} - - - {' '} - Cookies and Privacy policy - -
- -
-

- {t('authentication:footer-left')} -{' '} - - Learn More - -

-
-
- ) -} - -export default AuthWrapper