import { BrowserRouter as Router, Route, Routes, Outlet } from 'react-router-dom'; import Navigation from './Components/Navigation'; import LandingPage from './pages/LandingPage'; import RegistrationForm from "./Components/RegistrationForm"; import LoginForm from "./Components/LoginForm"; import ChatHistory from "./Components/ChatHistory"; import HomePage from './pages/HomePage'; import NewChatPage from "./Components/NewChatPage"; const Layout = () => (
); function App() { return ( } /> } /> } /> }> {/* Новый чат */} } /> {/* Существующий чат (после создания нового, URL обновится) */} } /> } /> } /> ); } export default App;