/
IvanWake
/
cookieStore
Обзор
Документация
Войти
/
IvanWake
/
cookieStore
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
src/components/Auth/AuthButtons.js
20 строк
571 B
Ivan Wake
Fix images, Animate Pages, userImage and AuthButtons
26 янв 2024, 18:04
26 янв 2024, 18:04
4267191
Код
Авторство
О чём код?
import { auth } from '../../store/styles'; import { motion } from 'framer-motion'; import SignUpButton from './SignUpButton'; import LogInButton from './LogInButton'; const AuthButtons = () => { return ( <motion.div initial={{height: 75, opacity: 0}} animate={{height: 'auto', opacity: 1}} style={{overflow: 'hidden'}} transition={{ duration: .5 }} className={auth.buttonsWrapper}> <LogInButton /> <SignUpButton /> </motion.div> ); } export default AuthButtons;