import React from 'react';
const styles = {
root: {
backgroundColor: 'white',
cursor: 'pointer',
'&:hover': {
background: 'red',
},
hover: {
background: 'red',
},
},
};
function TobButton() {
return <div style={styles.root}>top</div>;
}
export default TobButton;