[Nwitter-Fire] 프로필 페이지 유저 아바타 / 프로필 업데이트/ 프로필 이름 수정
·
FRONTEND/React
Profile.jsx import { styled } from "styled-components"; import { auth } from "../firebase"; import { useState } from "react"; const Wrapper = styled.div` display: flex; align-items: center; flex-direction: column; gap: 20px; `; const AvatarUpload = styled.label` width: 80px; overflow: hidden; height: 80px; border-radius: 50%; background-color: #1d9bf0; cursor: pointer; display: flex; justify-con..