const rows = Array.from({ length: 5 }).map((_, index) => ({ no: index + 1, title: `게시글 제목 샘플 ${index + 1}`, period: '2026-05-04 ~ 2026-05-31', createdAt: '2026-05-04', status: index === 0 ? '접수중' : '마감', })); export function UserListPage() { return ( <>
총 게시물 111건
| 번호 | 제목 | 기간 | 등록일 | 상태 |
|---|---|---|---|---|
| 번호 {row.no} | 제목 {row.title} | 기간 {row.period} | 등록일 {row.createdAt} | 상태 {row.status} |