We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a2c3d1 commit 7086c74Copy full SHA for 7086c74
example/src/ColumnProps.tsx
@@ -1,3 +1,4 @@
1
+/* eslint-disable @typescript-eslint/no-explicit-any */
2
import React from "react";
3
import { Table } from "react-fluid-table";
4
import styled from "styled-components";
@@ -148,7 +149,7 @@ const data: PropData[] = [
148
149
];
150
151
const ColumnPropsTable = () => (
- <StyledTable borders data={data} columns={columns} tableHeight={400} />
152
+ <StyledTable borders data={data} columns={columns as unknown as any[]} tableHeight={400} />
153
);
154
155
export default ColumnPropsTable;
0 commit comments