Files: 99bc16e5212f7086422943407911f7c31443ab4c / 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