From 0752f6064ef09f7b94a65e6c850d11907b7b8cce Mon Sep 17 00:00:00 2001 From: Arturo Romero Date: Mon, 10 Sep 2018 22:10:30 -0700 Subject: [PATCH] Update README.md Add `import React from 'react'` to simple debug example. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index e40bdf13..3356a081 100644 --- a/README.md +++ b/README.md @@ -348,6 +348,7 @@ renders it's HTML directly in the body. This method is a shortcut for `console.log(prettyDOM(baseElement))`. ```javascript +import React from 'react' import {render} from 'react-testing-library' const HelloWorld = () =>

Hello World