Added WIP for TrendsRSSPanel
• Added: - WIP for TrendsRSSPanel
This commit is contained in:
parent
6afa8b1f35
commit
a4ee21282d
@ -0,0 +1,33 @@
|
|||||||
|
import React from 'react'
|
||||||
|
import PropTypes from 'prop-types'
|
||||||
|
import { connect } from 'react-redux'
|
||||||
|
import ImmutablePureComponent from 'react-immutable-pure-component'
|
||||||
|
import ImmutablePropTypes from 'react-immutable-proptypes'
|
||||||
|
import PanelLayout from './panel_layout'
|
||||||
|
|
||||||
|
class TrendsRSSPanel extends ImmutablePureComponent {
|
||||||
|
|
||||||
|
render() {
|
||||||
|
const {
|
||||||
|
intl,
|
||||||
|
onChange,
|
||||||
|
settings,
|
||||||
|
} = this.props
|
||||||
|
|
||||||
|
return (
|
||||||
|
<PanelLayout>
|
||||||
|
TrendsRSSPanel
|
||||||
|
</PanelLayout>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const mapStateToProps = (state) => ({
|
||||||
|
//
|
||||||
|
})
|
||||||
|
|
||||||
|
TrendsFeedsPanel.propTypes = {
|
||||||
|
//
|
||||||
|
}
|
||||||
|
|
||||||
|
export default connect(mapStateToProps)(TrendsRSSPanel)
|
Loading…
x
Reference in New Issue
Block a user