11 lines
		
	
	
	
		
			310 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			310 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import { connect }   from 'react-redux';
 | 
						|
import NavigationBar from '../components/navigation_bar';
 | 
						|
import { me } from 'themes/glitch/util/initial_state';
 | 
						|
 | 
						|
const mapStateToProps = state => {
 | 
						|
  return {
 | 
						|
    account: state.getIn(['accounts', me]),
 | 
						|
  };
 | 
						|
};
 | 
						|
 | 
						|
export default connect(mapStateToProps)(NavigationBar);
 |