-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearchresulttsx0906
44 lines (41 loc) · 950 Bytes
/
searchresulttsx0906
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
import React, { Component } from 'react';
import './Search.css';
import './main.scss';
class InputForm extends Component {
constructor(props) {
super(props);
}
render() {
return (
<div>
<div className="dsrchrslt">
<h3 className="hsrchrslt"> Search Result </h3>
</div>
<div>
<div className="dsglerslt">
<p className="psrchrslt"> Single Identifier will appear here</p>
</div>
<div>
<table>
<thead>
<tr>
<td>Id</td>
<td>Coupon</td>
<td>Mat</td>
</tr>
</thead>
<tbody>
<tr>
<td />
<td />
<td />
</tr>
</tbody>
</table>
</div>
</div>
</div>
);
}
}
export default InputForm;