1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-02 07:27:04 +00:00

optimized code style

This commit is contained in:
shanshuirenjia
2018-12-18 10:36:42 +08:00
parent 93b619899f
commit c2266f9af1
3 changed files with 6 additions and 2 deletions

View File

@@ -8,12 +8,14 @@ import { Utils } from '../../utils/utils';
import { seafileAPI } from '../../utils/seafile-api.js';
class GroupItem extends React.Component {
constructor(props) {
super(props);
this.state = {
isOperationShow: false
};
}
onMouseEnter = () => {
this.setState({isOperationShow: true});
}