K-UIK-UI
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

ComponentDescription
Table테이블 루트 (스크롤 래퍼 포함)
TableHeader<thead>
TableBody<tbody>
TableFooter<tfoot>
TableRow<tr> (hover, selected 상태 지원)
TableHead<th> (헤더 셀)
TableCell<td> (데이터 셀)
TableCaption<caption>

On this page