Files: 99bc16e5212f7086422943407911f7c31443ab4c / app / todos / container.js
238 bytesRaw
1 | import React from 'react' |
2 | import { connect } from 'react-redux' |
3 | |
4 | class TodosContainer extends React.Component { |
5 | render () { |
6 | return <div> |
7 | todo list! |
8 | </div> |
9 | } |
10 | } |
11 | |
12 | export default connect( |
13 | (state) => ({}) |
14 | )(TodosContainer) |
15 |
Built with git-ssb-web