Skip to content

Commit 7086c74

Browse files
committed
tweak props
1 parent 2a2c3d1 commit 7086c74

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

example/src/ColumnProps.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/* eslint-disable @typescript-eslint/no-explicit-any */
12
import React from "react";
23
import { Table } from "react-fluid-table";
34
import styled from "styled-components";
@@ -148,7 +149,7 @@ const data: PropData[] = [
148149
];
149150

150151
const ColumnPropsTable = () => (
151-
<StyledTable borders data={data} columns={columns} tableHeight={400} />
152+
<StyledTable borders data={data} columns={columns as unknown as any[]} tableHeight={400} />
152153
);
153154

154155
export default ColumnPropsTable;

0 commit comments

Comments
 (0)