-
Notifications
You must be signed in to change notification settings - Fork 285
/
Copy pathbutton.js
40 lines (37 loc) · 815 Bytes
/
button.js
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
import React, {Component} from 'react';
import ReactDOM from 'react-dom';
import Style from 'style-it';
class Button extends Component {
render() {
return Style.it(`
.container {
text-align: center;
}
.button {
background-color: #ff0000;
width: 320px;
padding: 20px;
border-radius: 5px;
border: none;
outline: none;
}
.button:hover {
color: #fff;
}
.button:active {
position: relative;
top: 2px;
}
@media (max-width: 480px) {
.button {
width: 160px;
}
}
`,
<div className="container">
<button className="button">Click me!</button>
</div>
);
}
}
ReactDOM.render(<Button />, document.getElementById('content'));