Updated project linter rules and ran it

This commit is contained in:
Laszlo Fogas
2019-11-15 10:50:46 +01:00
parent 12279686e8
commit 824a206ee4
28 changed files with 109 additions and 102 deletions

View File

@@ -5,7 +5,7 @@ export default class Avatar extends Component {
render() {
const image = this.props.image;
const style = {
backgroundImage: `url(${image})`
backgroundImage: `url(${image})`,
};
return <div className={styles.avatar} style={style} />;
}