From 0ef0895ca890bbf41142192257255a7c25c20731 Mon Sep 17 00:00:00 2001 From: Matt Pocock Date: Tue, 23 Jul 2024 09:55:43 +0100 Subject: [PATCH] Test --- src/05-generics/39-generic-props.solution.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/05-generics/39-generic-props.solution.tsx b/src/05-generics/39-generic-props.solution.tsx index bef78c8..b88e6ff 100644 --- a/src/05-generics/39-generic-props.solution.tsx +++ b/src/05-generics/39-generic-props.solution.tsx @@ -3,7 +3,7 @@ import { Equal, Expect } from "../helpers/type-utils"; interface TableProps { rows: T[]; - renderRow: (row: T) => ReactNode; + rendw: (row: T) => ReactNode; } /**