import React, {Component} from 'react'
import {StyleSheet, css} from 'aphrodite'
const styles = StyleSheet.create({
container: {
textAlign: 'center'
},
button: {
backgroundColor: '#ff0000',
width: '320px',
borderRadius: '5px',
':hover': {
color: '#fff',
},
'@media (max‐width: 480px)': {
width: '160px'
}
}
})
export default class Button extends Component {
render() {
return (
Click me!
);
}
}