Files: ee357b9441a7fbb11be1a0d26b0a899624a2b155 / app / containers / no-match.js
244 bytesRaw
1 | const React = require('react') |
2 | const { connect } = require('react-redux') |
3 | |
4 | class NoMatch extends React.Component { |
5 | render () { |
6 | return <div> |
7 | no match! |
8 | </div> |
9 | } |
10 | } |
11 | |
12 | module.exports = connect( |
13 | (state) => { return {} } |
14 | )(NoMatch) |
15 |
Built with git-ssb-web