Skip to content
Snippets Groups Projects
Select Git revision
  • 42d6d827ebc003ffb1b343536b1d715a5dec20f3
  • master default protected
  • 2023-ujoncdelutan
  • 2023-update
  • 1.4.7 protected
  • 1.4.6 protected
  • 1.4.5 protected
  • 1.4.4 protected
  • 1.4.3 protected
  • 1.4.2 protected
  • 1.4.1 protected
  • 1.4.0 protected
  • 1.3.19 protected
  • 1.3.18 protected
  • 1.3.17 protected
  • 1.3.16 protected
  • 1.3.15 protected
  • 1.3.14 protected
  • 1.3.13 protected
  • 1.3.12 protected
  • 1.3.10 protected
  • 1.3.11 protected
  • 1.3.9 protected
  • 1.3.8 protected
24 results

index.js

Blame
  • index.js 676 B
    import React from 'react';
    import { render } from 'react-dom';
    import { Provider } from 'react-redux';
    import { BrowserRouter as Router } from 'react-router-dom';
    import 'slick-carousel/slick/slick.css';
    import 'slick-carousel/slick/slick-theme.css';
    import 'semantic-ui-css/semantic.min.css';
    
    import configureStore from './configureStore';
    import App from './components/App';
    import registerServiceWorker from './registerServiceWorker';
    
    import moment from 'moment';
    
    moment.locale();
    
    const store = configureStore();
    
    render(
      <Provider store={store}>
        <Router>
          <App />
        </Router>
      </Provider>,
      document.getElementById('root'),
    );
    
    registerServiceWorker();