forked from kuy/redux-saga-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
36 lines (32 loc) · 869 Bytes
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import React, { Component } from 'react';
import { connect } from 'react-redux';
import { SignIn, Timeline } from './pages';
class App extends Component {
page() {
const { app: { status } } = this.props;
switch (status) {
case 'init':
case 'signin':
case 'username':
return <SignIn />;
case 'ready':
return <Timeline />;
}
return <div>404 Not Found :(</div>;
}
render() {
const { app } = this.props;
return (
<div>
<h1>
<a href="https://github.com/kuy/redux-saga-examples/tree/master/microblog">Microblog</a> from <a href="https://github.com/kuy/redux-saga-examples">redux-saga-examples</a> by <a href="https://twitter.com/kuy">@kuy</a>
</h1>
{this.page()}
</div>
);
}
}
function select({ app }) {
return { app };
}
export default connect(select)(App);