Skip to content

Commit

Permalink
tweak props
Browse files Browse the repository at this point in the history
  • Loading branch information
mckervinc committed May 31, 2024
1 parent 2a2c3d1 commit 7086c74
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion example/src/ColumnProps.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable @typescript-eslint/no-explicit-any */
import React from "react";
import { Table } from "react-fluid-table";
import styled from "styled-components";
Expand Down Expand Up @@ -148,7 +149,7 @@ const data: PropData[] = [
];

const ColumnPropsTable = () => (
<StyledTable borders data={data} columns={columns} tableHeight={400} />
<StyledTable borders data={data} columns={columns as unknown as any[]} tableHeight={400} />
);

export default ColumnPropsTable;

0 comments on commit 7086c74

Please sign in to comment.