From 51589a9c70118c0a306aabbe959f9a6e7dd804c6 Mon Sep 17 00:00:00 2001 From: Dave Perrett Date: Wed, 5 Jan 2022 22:34:51 +0900 Subject: [PATCH] feat: expand the output textarea for long strings --- src/components/forms/Form.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/components/forms/Form.tsx b/src/components/forms/Form.tsx index 34fcec2a..48f54699 100644 --- a/src/components/forms/Form.tsx +++ b/src/components/forms/Form.tsx @@ -4,7 +4,12 @@ import { PropsWithChildren, ReactElement } from 'react' export const Form = ({ children, }: PropsWithChildren>): ReactElement => ( - + {children} )