Skip to main content

header

Description

Optional. Enables a header in the table

Usage

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} />;
}