Table is a component that displays data in a structured format. It is used to display data in a table format.
| Name | Role | Ability | Ship | Status |
|---|---|---|---|---|
| Neo (Thomas Anderson) | The One | Code manipulation, Flight | Nebuchadnezzar | Awakened |
| Trinity | First Mate | Hacking, Combat | Nebuchadnezzar | Awakened |
| Morpheus | Captain | Leadership, Combat | Nebuchadnezzar | Awakened |
| Agent Smith | Agent | Replication, Possession | None | Program |
| Cypher | Operator | Matrix Monitoring | Nebuchadnezzar | Traitor |
| Oracle | Guide | Foresight | None | Program |
| Niobe | Captain | Piloting, Combat | Logos | Awakened |
| Tank | Operator | Matrix Monitoring | Nebuchadnezzar | Born Free |
Import all parts of the component and piece them together
The root component for the Table.
| Prop | Type | Default |
|---|---|---|
className | string | -- |
children | ReactNode | -- |
customRootClass | string | '' |
The head component for the Table.
| Prop | Type | Default |
|---|---|---|
className | string | -- |
children | ReactNode | -- |
The body component for the Table.
| Prop | Type | Default |
|---|---|---|
className | string | -- |
children | ReactNode | -- |
The row component for the Table.
| Prop | Type | Default |
|---|---|---|
className | string | -- |
children | ReactNode | -- |
The table header-cell component rendered inside a Table.Row.
| Prop | Type | Default |
|---|---|---|
className | string | cell-header |
children | ReactNode | -- |
The cell component for the Table.
| Prop | Type | Default |
|---|---|---|
className | string | cell |
children | ReactNode | -- |