Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // child components
- import Banner from './Banner';
- import MainView from './MainView';
- // modules for a redux-connected react component
- import React from 'react';
- import {connect} from 'react-redux';
- // our http client
- import agent from '../../agent';
- // extract appName from state
- const mapStateToProps = (state) => ({
- appName: state.common.appName,
- });
- // ...
Advertisement
Add Comment
Please, Sign In to add comment