Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

12345678910111213141516171819202122232425
  1. import React from "react";
  2. import { Router } from "react-router-dom";
  3. import { Helmet } from "react-helmet-async";
  4. import i18next from "i18next";
  5. import history from "./store/utils/history";
  6. import MainContainer from "./components/Section/MainContainer";
  7. import AppRoutes from "./AppRoutes";
  8. /* istanbul ignore file */
  9. function App() {
  10. return (
  11. <>
  12. <Router history={history}>
  13. <Helmet>
  14. <title>{i18next.t("app.title")}</title>
  15. </Helmet>
  16. <MainContainer>
  17. <AppRoutes />
  18. </MainContainer>
  19. </Router>
  20. </>
  21. );
  22. }
  23. export default App;