Ran linter

This commit is contained in:
Angelos Chalaris
2019-03-02 10:10:14 +02:00
parent ddd852962d
commit 3868acab34
32 changed files with 583 additions and 708 deletions

View File

@@ -14,14 +14,14 @@ function Carousel(props) {
let scrollInterval = null;
const style = {
carousel: {
position: "relative"
position: 'relative'
},
carouselItem: {
position: "absolute",
visibility: "hidden"
position: 'absolute',
visibility: 'hidden'
},
visible: {
visibility: "visible"
visibility: 'visible'
}
};
React.useEffect(() => {
@@ -57,11 +57,10 @@ ReactDOM.render(
<div>carousel item 3</div>
]}
/>,
document.getElementById("root")
document.getElementById('root')
);
```
```
<!-- tags: visual,children,state,effect -->
<!-- expertise: 2 -->