blob: ef7a3aefeea819eae0f6b1c1a60f324a955d5c25 [file] [log] [blame]
xuegao19e628c2019-06-27 17:41:01 +02001/*-
2 * ============LICENSE_START=======================================================
3 * ONAP CLAMP
4 * ================================================================================
5 * Copyright (C) 2019 AT&T Intellectual Property. All rights
6 * reserved.
7 * ================================================================================
8 * Licensed under the Apache License, Version 2.0 (the "License");
9 * you may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * http://www.apache.org/licenses/LICENSE-2.0
13 *
14 * Unless required by applicable law or agreed to in writing, software
15 * distributed under the License is distributed on an "AS IS" BASIS,
16 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 * See the License for the specific language governing permissions and
18 * limitations under the License.
19 * ============LICENSE_END============================================
20 * ===================================================================
21 *
22 */
23import React from 'react';
24import Table from 'react-bootstrap/Table';
xuegao19e628c2019-06-27 17:41:01 +020025
sebdetc8d61302019-07-04 15:50:34 +020026export default class ClosedLoopViewLogs extends React.Component {
xuegao19e628c2019-06-27 17:41:01 +020027 render() {
28 return (
29 <div className="log_div">
30 <div className="log_table">
31 <label className="table_header">Loop Logs</label>
32 <Table striped hover id="loop-log-div">
33 <thead>
34 <tr>
35 <th><span align="left" className="text">Date</span></th>
36 <th><span align="left" className="text">Type</span></th>
37 <th><span align="left" className="text">Component</span></th>
38 <th><span align="right" className="text">Log</span></th>
39 </tr>
40 </thead>
41 <tbody>
42 <tr>
43 <td className="row_10_per">test</td>
44 <td className="row_10_per">test</td>
45 <td className="row_10_per">test</td>
46 <td className="row_70_per">test</td>
47 </tr>
48 </tbody>
49 </Table>
50 </div>
51 </div>
52 );
53 }
54}