From 9f5c0a52756f0cb7b7b88f634635c75ffa093236 Mon Sep 17 00:00:00 2001 From: Neha Ranade <904nehar@gmail.com> Date: Thu, 10 Feb 2022 12:45:41 +0000 Subject: [PATCH] revert html changes --- client/src/components/EditQuestionComponent.tsx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/client/src/components/EditQuestionComponent.tsx b/client/src/components/EditQuestionComponent.tsx index 54c8fb6..2e1e0e8 100644 --- a/client/src/components/EditQuestionComponent.tsx +++ b/client/src/components/EditQuestionComponent.tsx @@ -1,3 +1,4 @@ +import React from "react"; import { ChoiceGroup, IChoiceGroupOption, @@ -14,9 +15,6 @@ import {Col, Container, Row} from "react-grid-system"; const optionRootClass = mergeStyles({display: 'flex', alignItems: 'baseline'}); const textFieldStyles: Partial = {fieldGroup: {width: 350}}; - - - interface EditQuestionComponentProps { question: Question; setQuestion: (f: (oldValue: Question) => Question) => void; @@ -102,7 +100,6 @@ export const EditQuestionComponent = ( setQuestion(q => ({...q, description: newValue || ''})) } /> -