import React, { PropTypes } from 'react' import { connect } from 'react-redux' import classnames from 'classnames' NavAction.propTypes = { icon: PropTypes.string.isRequired, title: PropTypes.string.isRequired, onClick: PropTypes.func.isRequired, } function NavAction({ icon, title, onClick }) { return ( { event.preventDefault() onClick(event) }}> ) } Nav.propTypes = { active: PropTypes.string.isRequired, tabs: PropTypes.array.isRequired, onSelectTab: PropTypes.func.isRequired, } export default function Nav({ active, tabs, onSelectTab }) { return ( ) } eaker upstream openwrtJames
aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/generic/patches-3.13/450-mtd-nand-allow-to-use-platform-specific-chip-fixup.patch
blob: 81a6251c02025ae186beec1edf248e8b8b7c49c8 (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