Files: b453ff79d23734f7cc0746fdd5ee62f4f56622e5 / app / landing / container.js
255 bytesRaw
1 | import React from 'react' |
2 | import { connect } from 'react-redux' |
3 | |
4 | import Landing from './component' |
5 | |
6 | class LandingContainer extends React.Component { |
7 | render () { |
8 | return <Landing /> |
9 | } |
10 | } |
11 | |
12 | export default connect( |
13 | (state) => ({}) |
14 | )(LandingContainer) |
15 |
Built with git-ssb-web