--- // 갱신 기록. 무엇을 언제 바꿨는지 독자가 볼 수 있게 한다. interface Props { items: { date: string; note: string }[] } const { items } = Astro.props; --- {items.length > 0 && ( 갱신 기록 {[...items].reverse().map((h) => {h.date} {h.note})} )}