Add explicit any to the CustomRow props

Signed-off-by: Danang <danang@canva.com>
This commit is contained in:
Danang
2022-06-03 10:19:42 +10:00
parent 7d355c4b3f
commit 59c3063193
@@ -162,7 +162,7 @@ describe('<Table />', () => {
});
describe('with custom components', () => {
const CustomRow = ({ data }) => {
const CustomRow = ({ data }: any) => {
return (
<tr>
<td>customised cell {data.col1}</td>