Memento-Makers / Emopic-FE

📸
https://emopic.vercel.app
MIT License
0 stars 1 forks source link

✨ feat: LocationPhoto 컴포넌트 구현 #88

Closed punchdrunkard closed 10 months ago

punchdrunkard commented 10 months ago

요약

image

작업 내용

기타 (논의하고 싶은 부분)

컴포넌트 사용시 다음과 같이 사용하면 됨

export default function Home() {
  const { data, isLoading } = useLatestLocationPhoto();

  return (
    <>
        {isLoading && (
          <div className="animate-pulse bg-gray-400 w-[190px] h-[190px] animate-pulse rounded-lg"></div>
        )}

        {!isLoading && data && <LocationPhoto photo={data} />}
    </>
  );
}

close #81

vercel[bot] commented 10 months ago

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
emopic ✅ Ready (Inspect) Visit Preview 💬 Add feedback Oct 21, 2023 8:45am