import React from 'react' import PropTypes from 'prop-types' import classnames from 'classnames' import columns from './FlowColumns' import { pure } from '../../utils' FlowRow.propTypes = { onSelect: PropTypes.func.isRequired, flow: PropTypes.object.isRequired, highlighted: PropTypes.bool, selected: PropTypes.bool, } function FlowRow({ flow, selected, highlighted, onSelect }) { const className = classnames({ 'selected': selected, 'highlighted': highlighted, 'intercepted': flow.intercepted, 'has-request': flow.request, 'has-response': flow.response, }) return ( onSelect(flow.id)}> {columns.map(Column => ( ))} ) } export default pure(FlowRow) cted'>master xenJames
aboutsummaryrefslogtreecommitdiffstats
path: root/xen/arch/arm/decode.h
blob: 4613763bdbc0d4b2b1255249c0be10e3d80701af (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