-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathNetwork.jsx
67 lines (65 loc) · 1.65 KB
/
Network.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
import {
Container,
QueryBox,
QueryBoxHeader,
QueryOptions,
ShowQueryBox,
ShowQueryBoxHeader,
QueriedItems,
QueryResult,
} from "../styles/stylesNetwork";
const Network = () => {
return (
<Container>
<QueryBox>
<QueryBoxHeader>
<h2>Users Network</h2>
</QueryBoxHeader>
<QueryOptions>
<br />
<h3>Search Box</h3>
<br />
<h3>My Network</h3>
<br />
<h3>Status Pending</h3>
<br />
<h3>Request Pending</h3>
<br />
<h3>People You May Know</h3>
</QueryOptions>
</QueryBox>
<ShowQueryBox>
<ShowQueryBoxHeader>
<h2>Will display what the User Queried</h2>
</ShowQueryBoxHeader>
<QueriedItems>
<QueryResult>
<img src="/images/user.svg" alt="" />
</QueryResult>
<QueryResult>
<img src="/images/user.svg" alt="" />
</QueryResult>
<QueryResult>
<img src="/images/user.svg" alt="" />
</QueryResult>
<QueryResult>
<img src="/images/user.svg" alt="" />
</QueryResult>
<QueryResult>
<img src="/images/user.svg" alt="" />
</QueryResult>
<QueryResult>
<img src="/images/user.svg" alt="" />
</QueryResult>
<QueryResult>
<img src="/images/user.svg" alt="" />
</QueryResult>
<QueryResult>
<img src="/images/user.svg" alt="" />
</QueryResult>
</QueriedItems>
</ShowQueryBox>
</Container>
);
};
export default Network;