diff --git a/src/Components/RadioGroupButtons/RadioGroupButtons.tsx b/src/Components/RadioGroupButtons/RadioGroupButtons.tsx index 76f1433..f007392 100644 --- a/src/Components/RadioGroupButtons/RadioGroupButtons.tsx +++ b/src/Components/RadioGroupButtons/RadioGroupButtons.tsx @@ -18,6 +18,7 @@ export const RadioGroupButtons: React.FunctionComponent -
+
{ inputGroups }
diff --git a/src/Interfaces/IInputGroup.ts b/src/Interfaces/IInputGroup.ts index eba23cd..dfc9942 100644 --- a/src/Interfaces/IInputGroup.ts +++ b/src/Interfaces/IInputGroup.ts @@ -1,4 +1,6 @@ +import React from 'react'; + export interface IInputGroup { - text: string + text: React.ReactNode value: string }