-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathSamplerFra.jsx
43 lines (37 loc) · 1020 Bytes
/
SamplerFra.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
import React from "react";
import { Button, ButtonToolbar, ButtonGroup } from "react-bootstrap";
import "./SamplerFra.css"
const SamplerFra = () => {
const containerStyle = {
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
minHeight: '100vh',
backgroundColor: 'rgb(252, 144, 3)',
};
const loopButtonStyle = {
position: 'absolute',
top: '20px',
left: '40px',
padding: '40px',
backgroundColor: 'white',
border: '20px',
fontSize: '40px',
cursor: 'pointer',
};
return (
<div style={containerStyle}>
{/* Loop按钮 */}
<Button style={loopButtonStyle}>Frame</Button>
<ButtonToolbar>
<ButtonGroup>
<Button className="button-style">1</Button>
<Button className="button-style">2</Button>
<Button className="button-style">3</Button>
<Button className="button-style">3</Button>
</ButtonGroup>
</ButtonToolbar>
</div>
);
};
export default SamplerFra;