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