-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuffer.js
More file actions
53 lines (49 loc) · 1.47 KB
/
Buffer.js
File metadata and controls
53 lines (49 loc) · 1.47 KB
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
import React from 'react';
import styled from 'styled-components';
const BufferWrapper = styled.div`
height: 150px;
background-color: #f8f8f8;
display: flex;
justify-content: center;
align-items: center;
`;
const DropdownWrapper = styled.div`
display: flex;
gap: 20px;
`;
const Buffer = () => (
<BufferWrapper>
<DropdownWrapper>
<div className="form-group">
<select className="form-control">
<option value="">Furniture</option>
<option value="sofas">Sofas</option>
<option value="tables">Tables</option>
<option value="chairs">Chairs</option>
</select>
</div>
<div className="form-group">
<select className="form-control">
<option value="">Steel Equipment</option>
<option value="kitchen">Kitchen</option>
<option value="outdoor">Outdoor</option>
</select>
</div>
<div className="form-group">
<select className="form-control">
<option value="">Plaster of Paris Works</option>
<option value="ceiling">Ceiling</option>
<option value="walls">Walls</option>
</select>
</div>
<div className="form-group">
<select className="form-control">
<option value="">Decor</option>
<option value="lighting">Lighting</option>
<option value="accessories">Accessories</option>
</select>
</div>
</DropdownWrapper>
</BufferWrapper>
);
export default Buffer;