From c64f3c601ef79572934be9c3d520cd0400bd4ccd Mon Sep 17 00:00:00 2001 From: Tatyana Nikolaeva Date: Mon, 28 Apr 2025 07:17:23 +0000 Subject: [PATCH] Delete PageSurvey.tsx --- .../src/components/PageSurvey/PageSurvey.tsx | 29 ------------------- 1 file changed, 29 deletions(-) delete mode 100644 SurveyFrontend/src/components/PageSurvey/PageSurvey.tsx diff --git a/SurveyFrontend/src/components/PageSurvey/PageSurvey.tsx b/SurveyFrontend/src/components/PageSurvey/PageSurvey.tsx deleted file mode 100644 index fe1de26..0000000 --- a/SurveyFrontend/src/components/PageSurvey/PageSurvey.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import React from 'react'; -import styles from './PageSurvey.module.css'; - -interface PageSurveyProps{ - name: string; - isActive: boolean; - onClick(): void; -} - -const PageSurvey: React.FC = ({name, isActive, onClick}) => { - return ( -
  • - {isActive ? ( - <> - -
    - - ) : ( - - )} -
  • - ); -}; - -export default PageSurvey;