I'm using testing-library with react
I have this in my test file
import React from 'react' // best if I can skip this in every test file
import { render, screen } from '@testing-library/react'
but I got this error
`@testing-library/react` import should occur before import of `react`
either I turn off the eslint rule for order or I can somehow skip doing import React in every single test file.