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.

преди 3 години
преди 3 години
преди 3 години
преди 3 години
преди 3 години
123456789101112131415161718192021222324
  1. import React from 'react';
  2. import { Helmet } from 'react-helmet-async';
  3. import i18next from 'i18next';
  4. import { BrowserRouter } from 'react-router-dom';
  5. import AppRoutes from './AppRoutes';
  6. function App() {
  7. return (
  8. <>
  9. <BrowserRouter>
  10. <Helmet>
  11. <title>
  12. {i18next.t('app.title')}
  13. </title>
  14. </Helmet>
  15. <main className='l-page'>
  16. <AppRoutes />
  17. </main>
  18. </BrowserRouter>
  19. </>
  20. );
  21. }
  22. export default App;