From 55d59c2d07a04706e1fcc9ab90112c8a4b28849b Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Fri, 18 Aug 2023 19:28:28 +0100 Subject: [PATCH] Accept an id prop --- src/components/Form/Row.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Form/Row.tsx b/src/components/Form/Row.tsx index 1d78e68..a46dbd2 100644 --- a/src/components/Form/Row.tsx +++ b/src/components/Form/Row.tsx @@ -6,7 +6,7 @@ import Heading from 'components/Form/Heading'; export interface RowProps { lbl: string, val: string, - // key?: string, + key?: string | number, children?: ReactNode, rowList?: RowProps[], title?: string,