mirror of
https://iceshrimp.dev/blueb/Chuckya-fe-standalone.git
synced 2026-01-11 13:33:21 -08:00
* Add semi to ESLint rules * Add padded-blocks to ESLint rules * Add comma-dangle to ESLint rules * add config/webpack and storyboard * add streaming/ * yarn test:lint -- --fix
10 lines
289 B
JavaScript
10 lines
289 B
JavaScript
import { connect } from 'react-redux';
|
|
import NavigationBar from '../components/navigation_bar';
|
|
|
|
const mapStateToProps = (state, props) => {
|
|
return {
|
|
account: state.getIn(['accounts', state.getIn(['meta', 'me'])]),
|
|
};
|
|
};
|
|
|
|
export default connect(mapStateToProps)(NavigationBar);
|