Jack Mallers
7 years ago
6 changed files with 43 additions and 0 deletions
@ -0,0 +1,18 @@ |
|||||
|
import React, { Component } from 'react' |
||||
|
import PropTypes from 'prop-types' |
||||
|
|
||||
|
import styles from './Network.scss' |
||||
|
|
||||
|
class Network extends Component { |
||||
|
render() { |
||||
|
return ( |
||||
|
<div> |
||||
|
Network |
||||
|
</div> |
||||
|
) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
Network.propTypes = {} |
||||
|
|
||||
|
export default Network |
@ -0,0 +1,12 @@ |
|||||
|
import { withRouter } from 'react-router' |
||||
|
import { connect } from 'react-redux' |
||||
|
|
||||
|
import Network from '../components/Network' |
||||
|
|
||||
|
const mapDispatchToProps = {} |
||||
|
|
||||
|
const mapStateToProps = state => ({ |
||||
|
network: state.network |
||||
|
}) |
||||
|
|
||||
|
export default withRouter(connect(mapStateToProps, mapDispatchToProps)(Network)) |
@ -0,0 +1,3 @@ |
|||||
|
import NetworkContainer from './containers/NetworkContainer' |
||||
|
|
||||
|
export default NetworkContainer |
Loading…
Reference in new issue