git ssb

1+

dinoworm ๐Ÿ› / catstack



Tree: 7d964f2bef52e9913aa6872a034f7e967653274b

Files: 7d964f2bef52e9913aa6872a034f7e967653274b / app / containers / app.js

317 bytesRaw
1const React = require('react')
2const { connect } = require('react-redux')
3
4class AppContainer extends React.Component {
5 render () {
6 const { children } = this.props
7
8 return <div>
9 <span>hello world!</span>
10 { children }
11 </div>
12 }
13}
14
15module.exports = connect(
16 (state) => ({})
17)(AppContainer)
18

Built with git-ssb-web