Gaic4o / minsuDev

https://minsu-dev.vercel.app
0 stars 0 forks source link

feat(apps/minsu_dev): Add PostCard Component with tests #6

Closed Gaic4o closed 8 months ago

Gaic4o commented 8 months ago

Overview

PostCard 컴포넌트는 블로그 포스트나 기사를 카드 형태로 표시하는 데 사용됩니다. 이 컴포넌트는 포스트의 제목, 내용 미리보기, 생성 날짜, 그리고 미리보기 이미지를 포함합니다.

<PostCard
  id={1}
  title={'Hello Title'}
  content={'Hello Content'}
  created_at={'2021-01-01T00:00:00.000Z'}
  preview_image_url={'/path/to/image.webp'}
/>