Components
Table
데이터를 행과 열로 표시하는 테이블 컴포넌트입니다.
Preview
| 접수번호 | 민원유형 | 접수일 | 상태 |
|---|---|---|---|
| 2024-001 | 건축 허가 | 2024-03-01 | 완료 |
| 2024-002 | 도로 보수 | 2024-03-05 | 처리중 |
| 2024-003 | 소음 민원 | 2024-03-07 | 접수 |
<Table>
<TableHeader>
<TableRow>
<TableHead>컬럼</TableHead>
</TableRow>
</TableHeader>
<TableBody>
<TableRow>
<TableCell>데이터</TableCell>
</TableRow>
</TableBody>
</Table>Sub-components
| Component | Description |
|---|---|
Table | 테이블 루트 (스크롤 래퍼 포함) |
TableHeader | <thead> |
TableBody | <tbody> |
TableFooter | <tfoot> |
TableRow | <tr> (hover, selected 상태 지원) |
TableHead | <th> (헤더 셀) |
TableCell | <td> (데이터 셀) |
TableCaption | <caption> |