Skip to content

Commit

Permalink
yarn prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari committed Feb 13, 2021
1 parent d2a360b commit f0f114c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion docs/src/pages/demos/DemoAutoPlay.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,11 @@ class DemoAutoPlay extends React.Component {

return (
<div style={styles.root}>
<AutoPlaySwipeableViews index={index} onChangeIndex={this.handleChangeIndex} enableMouseEvents>
<AutoPlaySwipeableViews
index={index}
onChangeIndex={this.handleChangeIndex}
enableMouseEvents
>
<div style={Object.assign({}, styles.slide, styles.slide1)}>slide n°1</div>
<div style={Object.assign({}, styles.slide, styles.slide2)}>slide n°2</div>
<div style={Object.assign({}, styles.slide, styles.slide3)}>slide n°3</div>
Expand Down
2 changes: 1 addition & 1 deletion docs/src/pages/demos/DemoCircular.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ function slideRenderer(params) {
}

function DemoSimple() {
return <VirtualizeSwipeableViews slideRenderer={slideRenderer} enableMouseEvents/>;
return <VirtualizeSwipeableViews slideRenderer={slideRenderer} enableMouseEvents />;
}

export default DemoSimple;
2 changes: 1 addition & 1 deletion docs/src/pages/demos/DemoHocs.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ function slideRenderer(params) {
}

function DemoHocs() {
return <EnhancedSwipeableViews slideCount={10} slideRenderer={slideRenderer} enableMouseEvents/>;
return <EnhancedSwipeableViews slideCount={10} slideRenderer={slideRenderer} enableMouseEvents />;
}

export default DemoHocs;

0 comments on commit f0f114c

Please sign in to comment.