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
import { getData } from "./common/data";
import { Grid } from "@svar-ui/react-grid";
const { data, columns } = getData();
export default function Example() {
return <Grid data={data} columns={columns} header={false} />;
}