Files: 8ff89763aa5a55ca923acb5f2228036e30440737 / app / four-oh-four / container.js
247 bytesRaw
1 | import React from 'react' |
2 | import { connect } from 'react-redux' |
3 | |
4 | class FourOhFourContainer extends React.Component { |
5 | render () { |
6 | return <div> |
7 | no match! |
8 | </div> |
9 | } |
10 | } |
11 | |
12 | export default connect( |
13 | (state) => ({}) |
14 | )(FourOhFourContainer) |
15 |
Built with git-ssb-web