You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

App.js 688B

12345678910111213141516171819202122232425262728
  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 Header from './components/Header/Header';
  7. import "react-responsive-carousel/lib/styles/carousel.min.css";
  8. // import Sidebar from './components/Sidebar/Sidebar';
  9. import AppRoutes from './AppRoutes';
  10. const App = () => (
  11. <Router history={history}>
  12. <Helmet>
  13. <title>
  14. {i18next.t('app.title')}
  15. </title>
  16. </Helmet>
  17. <>
  18. {/* <Header /> */}
  19. {/* <Sidebar /> */}
  20. <AppRoutes />
  21. </>
  22. </Router>
  23. );
  24. export default App;