diff --git a/SurveyFrontend/src/components/SurveyPagesList/SurveyPagesList.tsx b/SurveyFrontend/src/components/SurveyPagesList/SurveyPagesList.tsx deleted file mode 100644 index c61e8fa..0000000 --- a/SurveyFrontend/src/components/SurveyPagesList/SurveyPagesList.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import React from 'react'; -import styles from './SurveyPagesList.module.css'; -import PageSurvey from "../PageSurvey/PageSurvey.tsx"; - -interface SurveyPagesListProps{ - activePage: string; - onPageClick: (name: string) => void; -} - -const SurveyPagesList: React.FC = ({activePage, onPageClick}) => { - const listPages: string[] = ['Создать опрос', 'Мои опросы'] - - return ( - - ); -}; - -export default SurveyPagesList; \ No newline at end of file