/
lizardking
/
react_final
Обзор
Документация
Войти
/
lizardking
/
react_final
Код
Запросы
1
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
old
src/app/App.tsx
15 строк
386 B
LizardKing
Initial commit
22 ноя 2025, 15:56
22 ноя 2025, 15:56
0df0d9e
Код
Авторство
О чём код?
import { Provider } from 'react-redux' import { RouterProvider } from 'react-router-dom' import { store } from 'shared/store/store' import { router } from './router' import './styles/normalize.css' import './styles/styles.css' import 'react-toastify/dist/ReactToastify.css' export const App = () => ( <Provider store={store}> <RouterProvider router={router} /> </Provider> )