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