Is it possible to auto-import files with webpack or React so that I don’t need to `import` every time

I very often need to write:

<div style={{display:'flex'}}>
  ...
</div>

However, I’d ideally just write:

<Row>
  ...
</Row>

But I don’t want to need to import Row from './Row' every time.
What’s the easiest way to accomplish this?

I’m happy to disable linting for specific variables.
Is there something I can do to webpack config to make it accessible to every React file?