Table
First | Second |
---|
First item in first column | Second item in first column |
First item in second column | Second item in second column |
Variants
Default
First | Second |
---|
First item in first column | Second item in first column |
First item in second column | Second item in second column |
Props
Component:
Required | Name | Type | Default value | Description |
---|
Custom UI
const MyTable = () => {
const tableInstance = useTableContext();
return <table />; // UI
};
const MySpecialTable = () => (
<Table component={Component} customUI={<MyTable />} />
);