-
Notifications
You must be signed in to change notification settings - Fork 0
/
Upgrade.jsx
93 lines (89 loc) · 2.96 KB
/
Upgrade.jsx
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
//bottom upgrate tab
import React, { Component } from "react";
import { Table, Grid, Row, Col } from "react-bootstrap";
import Card from "components/Card/Card";
import Button from "components/CustomButton/CustomButton";
class Icons extends Component {
render() {
return (
<div className="content">
<Grid fluid>
<Row>
<Col md={12}>
<Card
hCenter
title="VNX Dashboard"
category="This is vnx dash board which can be use for get health of arrays."
ctTableResponsive
ctTableFullWidth
ctTableUpgrade
content={
<Table>
<thead>
<tr>
<th />
<th className="text-center">Faults</th>
<th className="text-center">Normal</th>
</tr>
</thead>
<tbody>
<tr>
<td>Disk Faults</td>
<td>60</td>
<td>30</td>
</tr>
<tr>
<td>SPS Faults</td>
<td>3</td>
<td>1</td>
</tr>
<tr>
<td>SPA,SPB faults</td>
<td>7</td>
<td>4</td>
</tr>
<tr>
<td>Power faults</td>
<td>
<i className="fa fa-times text-danger" />
</td>
<td>
<i className="fa fa-check text-success" />
</td>
</tr>
<tr>
<td>BE,FE port faults</td>
<td>
<i className="fa fa-times text-danger" />
</td>
<td>
<i className="fa fa-check text-success" />
</td>
</tr>
<tr>
<td />
<td>
</td>
<td>
<Button
href="/admin/dashboard"
round
fill
bsStyle="info"
>
Home
</Button>
</td>
</tr>
</tbody>
</Table>
}
/>
</Col>
</Row>
</Grid>
</div>
);
}
}
export default Icons;