diff options
Diffstat (limited to 'src/components/ListTable.tsx')
-rw-r--r-- | src/components/ListTable.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/ListTable.tsx b/src/components/ListTable.tsx index 9faa0ad..9315a27 100644 --- a/src/components/ListTable.tsx +++ b/src/components/ListTable.tsx @@ -8,13 +8,13 @@ interface Field { interface Props { items: any[]; fields: Field[]; - handleRowClick?: (index: number) => any; + handleRowClick?: (index: number) => void; } const ListTable: React.FC<Props> = ({ items, fields, handleRowClick = () => {} }) => { return ( - <table className="m-2 table-auto w-full"> + <table className="table-auto w-full"> <thead> <tr className="border-b select-none"> {fields.map(field => <th>{field.label}</th>)} |