import React from "react" import PropTypes from "prop-types" import { connect } from "react-redux" import { ConnectionState } from "../../ducks/connection" ConnectionIndicator.propTypes = { state: PropTypes.symbol.isRequired, message: PropTypes.string, } export function ConnectionIndicator({ state, message }) { switch (state) { case ConnectionState.INIT: return connecting…; case ConnectionState.FETCHING: return fetching data…; case ConnectionState.ESTABLISHED: return connected; case ConnectionState.ERROR: return connection lost; case ConnectionState.OFFLINE: return offline; } } export default connect( state => state.connection, )(ConnectionIndicator) tion value='attitude_adjustment'>attitude_adjustment upstream openwrtJames
aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/atheros/patches-2.6.37/200-ar2313_enable_mvswitch.patch
blob: c652d7ba6d0e8cc36f0a5154068e218e655eb7e5 (plain)
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70