Skip to content

Commit 08c7107

Browse files
committed
Prettier updates
1 parent f5e404c commit 08c7107

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

packages/react-dom/src/__tests__/ReactDOMComponentTree-test.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,11 @@ describe('ReactDOMComponentTree', () => {
165165

166166
it('finds instance from node to stop rendering over other react rendered components', () => {
167167
spyOn(console, 'error');
168-
const component = <div><span>Hello</span></div>;
168+
const component = (
169+
<div>
170+
<span>Hello</span>
171+
</div>
172+
);
169173
const anotherComponent = <div />;
170174
const container = document.createElement('div');
171175
const instance = ReactDOM.render(component, container);

0 commit comments

Comments
 (0)