Skip to content

Commit eb15c91

Browse files
authored
Fixes indentation
1 parent e241b28 commit eb15c91

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

README.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -106,14 +106,15 @@ constructor() {
106106
this.state = {
107107
data: undefined,
108108
};
109-
110-
componentWillMount() {
111-
treeUtil.parseCSV(csvSource)
112-
.then((data) => {
113-
this.setState({ data })
114-
})
115-
.catch((err) => console.error(err));
116-
}
109+
}
110+
111+
componentWillMount() {
112+
treeUtil.parseCSV(csvSource)
113+
.then((data) => {
114+
this.setState({ data })
115+
})
116+
.catch((err) => console.error(err));
117+
}
117118

118119
class MyComponent extends Component {
119120
render() {

0 commit comments

Comments
 (0)