group posts

This commit is contained in:
Виталий Лавшонок
2025-11-16 00:03:07 +03:00
parent 56b6f9b339
commit b949837e13
9 changed files with 937 additions and 643 deletions

View File

@@ -6,11 +6,13 @@ import './styles/palette/theme-light.css';
import { BrowserRouter } from 'react-router-dom';
import { Provider } from 'react-redux';
import { store } from './redux/store';
import { ToastContainer } from 'react-toastify';
createRoot(document.getElementById('root')!).render(
<BrowserRouter>
<Provider store={store}>
<App />
<ToastContainer />
</Provider>
</BrowserRouter>,
);