Skip to content
This repository was archived by the owner on May 14, 2020. It is now read-only.

Commit e0c99c3

Browse files
committed
Whitespaces
1 parent 30e65bb commit e0c99c3

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

examples/src/App.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ export default class App extends Component {
3434
base0D: '#66d9ef',
3535
base0E: '#ae81ff',
3636
base0F: '#cc6633'
37-
3837
};
3938

4039
return (

src/grab-node.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ export default function(key, value, prevValue, theme, initialExpanded = false) {
2525
return <JSONBooleanNode keyName={key} previousValue={prevValue} theme={theme} value={value} key={key} />;
2626
} else if (nodeType === 'Date') {
2727
return <JSONDateNode keyName={key} previousValue={prevValue} theme={theme} value={value} key={key} />;
28-
}else if (nodeType === 'Null') {
28+
} else if (nodeType === 'Null') {
2929
return <JSONNullNode keyName={key} previousValue={prevValue} theme={theme} value={value} key={key} />;
30-
}
30+
}
3131
return false;
3232
}

0 commit comments

Comments
 (0)