import Navigation from "../Navigation/Navigation.tsx"; import React, {useState} from "react"; import styles from './MainComponent.module.css' import Survey from "../Survey/Survey.tsx"; import SettingSurvey from "../SettingSurvey/SettingSurvey.tsx"; const MainComponent: React.FC = () => { const [activePage, setActivePage] = useState( localStorage.getItem("activePage") || "Вопросы" ); const handleNavigationClick = (title: string) => { setActivePage(title); localStorage.setItem('activePage', title); } return (
{ activePage === 'Вопросы' && } {activePage === 'Настройки' && }
) } export default MainComponent;