proxy_pass 를 통해 cors 피하기
소통 방식.. 구조?
useState 통해
구조로 설정했음.
사소한거 .. setState 하고 바로 console 찍으면 딜레이 있는데 비동기 방식으로 작동해서
인줄 알았는데 아니라고 한다
—> fiber architecture 때문이라고 함! 한번 자세히 읽어보기,, 지금은 시간 이슈 ㅜ
콘솔로그가 이상한건 setState가 비동기 함수여서가 아닙니다. (feat: fiber architecture)
이미지 input 받아서 그 사진을 배경으로 설정 → 개빡침
<div
key={index}
className={`image-item flex flex-col justify-end items-end`}
style={{
backgroundImage: `url(${image['data_url']})`,
backgroundSize: 'cover', // 배경 이미지가 div를 가득 채우도록 설정
backgroundRepeat: 'no-repeat', // 배경 이미지 반복 비활성화
backgroundPosition: 'center', // 배경 이미지 중앙 정렬
height: '100%',
width: '100%',
}}
>
</div>;