Skip to content

Commit f827e6e

Browse files
ranihorevslmgc
authored andcommitted
prettier
1 parent 7ffdcdc commit f827e6e

File tree

2 files changed

+25
-20
lines changed

2 files changed

+25
-20
lines changed

.prettierrc

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"singleQuote": true,
3+
"semi": false,
4+
"bracketSpacing": false
5+
}

demo/src/index.js

+20-20
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
import React from "react";
2-
import { render } from "react-dom";
3-
import ReactHintFactory from "src";
4-
import "css/index.css";
5-
import "./index.css";
1+
import React from 'react'
2+
import {render} from 'react-dom'
3+
import ReactHintFactory from 'src'
4+
import 'css/index.css'
5+
import './index.css'
66

7-
const ReactHint = ReactHintFactory(React);
7+
const ReactHint = ReactHintFactory(React)
88
class App extends React.Component {
99
onRenderContent = (target, content) => {
10-
const { catId } = target.dataset;
11-
const width = 240;
12-
const url = `https://images.pexels.com/photos/${catId}/pexels-photo-${catId}.jpeg?w=${width}`;
10+
const {catId} = target.dataset
11+
const width = 240
12+
const url = `https://images.pexels.com/photos/${catId}/pexels-photo-${catId}.jpeg?w=${width}`
1313

1414
return (
1515
<div className="custom-hint__content">
@@ -21,23 +21,23 @@ class App extends React.Component {
2121
Ok
2222
</button>
2323
</div>
24-
);
25-
};
24+
)
25+
}
2626

2727
render() {
2828
return (
2929
<div>
3030
<ReactHint
3131
auto
3232
position="top"
33-
events={{ hover: true }}
33+
events={{hover: true}}
3434
onRenderContent={() => (
3535
<div
3636
style={{
37-
minWidth: "100px",
38-
padding: "5px",
39-
border: "1px solid black",
40-
zIndex: "99999",
37+
minWidth: '100px',
38+
padding: '5px',
39+
border: '1px solid black',
40+
zIndex: '99999',
4141
}}
4242
>
4343
Hello! Something long that could demonstrate the issue very
@@ -47,12 +47,12 @@ class App extends React.Component {
4747
)}
4848
attribute="data-tip1"
4949
/>
50-
<ReactHint autoPosition events delay={{ show: 100, hide: 1000 }} />
50+
<ReactHint autoPosition events delay={{show: 100, hide: 1000}} />
5151
<ReactHint
5252
persist
5353
attribute="data-custom"
5454
className="custom-hint"
55-
events={{ click: true }}
55+
events={{click: true}}
5656
onRenderContent={this.onRenderContent}
5757
ref={(ref) => (this.instance = ref)}
5858
/>
@@ -83,8 +83,8 @@ class App extends React.Component {
8383
Click Me
8484
</button>
8585
</div>
86-
);
86+
)
8787
}
8888
}
8989

90-
render(<App />, demo);
90+
render(<App />, demo)

0 commit comments

Comments
 (0)