Skip to content

Commit 9861478

Browse files
author
Jose Alfonso
committed
Lint corrections
1 parent 9310e73 commit 9861478

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

example/components/simple.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
const trace1 = {
22
x: [1, 2, 3, 4],
33
y: [10, 15, 13, 17],
4-
type: "scatter"
4+
type: 'scatter',
55
};
66

77
const trace2 = {
88
x: [1, 2, 3, 4],
99
y: [16, 5, 11, 9],
10-
type: "scatter"
10+
type: 'scatter',
1111
};
1212

1313
export default {
14-
display: "Scatter",
14+
display: 'Scatter',
1515
data: {
1616
data: [trace1, trace2],
1717
attr: { displayModeBar: true },
1818
layout: {
19-
plot_bgcolor: "#d3d3d3",
20-
paper_bgcolor: "#d3d3d3"
21-
}
22-
}
19+
plot_bgcolor: '#d3d3d3',
20+
paper_bgcolor: '#d3d3d3',
21+
},
22+
},
2323
};

0 commit comments

Comments
 (0)