Skip to content

Commit c32c54f

Browse files
author
Brandon Dail
committed
Fix lint error
1 parent 19561b6 commit c32c54f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/react-test-renderer/src/__tests__/ReactShallowRenderer-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1457,7 +1457,7 @@ describe('ReactShallowRenderer', () => {
14571457

14581458
it('should handle memo', () => {
14591459
const Foo = () => {
1460-
<div>Foo</div>;
1460+
return <div>Foo</div>;
14611461
};
14621462
const MemoFoo = React.memo(Foo);
14631463
const shallowRenderer = createRenderer();

0 commit comments

Comments
 (0)