Fix react testing library import

This commit is contained in:
Marcello Lamonaca 2021-03-19 15:35:13 +01:00
parent 89c9920269
commit 8c2cf41ace

View file

@ -153,7 +153,7 @@ In `Components.test.js`:
```js
import React from "react";
import { cleanup, render } from "react-testing-library";
import { cleanup, render } from "@testing-library/react";
import Component from "./path/to/Component";