header
Description
Optional. Enables a header in the tableUsage
header?: boolean;
Parameters
If the header
value is set to true (default), a header is enabled in the table; if false, no header is displayed.
Example
export default function App() {
return (
<Grid
data={data}
columns={columns}
header={false} />
)
}
const { data, columns } = getData();