Skip to content

Commit

Permalink
fix(flow): fix table body callback
Browse files Browse the repository at this point in the history
  • Loading branch information
ej9x committed Nov 19, 2018
1 parent 6585cc2 commit 4ae4a9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/atoms/Table/TableBody.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { Button } from '../Button';
import { createStyledTag, createTheme } from '../../utils';

type TableBodyProps<T: Object> = {
children?: (T) => React$Node,
children?: (T, index: number) => React$Node,
data?: T[],
loading?: boolean,
action?: React$Node,
Expand Down

0 comments on commit 4ae4a9c

Please sign in to comment.