mirror of
				https://github.com/reduxjs/redux-devtools.git
				synced 2025-11-04 18:07:27 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			411 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			411 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import React from 'react';
 | 
						|
import { render } from 'react-dom';
 | 
						|
import { Provider } from 'react-redux';
 | 
						|
import App from './containers/App';
 | 
						|
import configureStore from './store/configureStore';
 | 
						|
 | 
						|
const store = configureStore();
 | 
						|
 | 
						|
render(
 | 
						|
  <div id="container">
 | 
						|
    <Provider store={store}>
 | 
						|
      <App />
 | 
						|
    </Provider>
 | 
						|
    <iframe src="http://remotedev.io/local/" />
 | 
						|
  </div>,
 | 
						|
  document.getElementById('root')
 | 
						|
);
 |