VSCode with typescript has this awesome feature where if you do CMD
+.
on a module that hasn't been imported yet, it gives you the option to automatically import that module or import all modules that are missing.
It's particularly helpful when copying a bunch of JSX, and letting vscode handle all the imports. This works great but with one exception, it won't import the component. I figured it's probably because it refers to https://developer.mozilla.org/en-US/docs/Web/API/Text/Text.
Is there a way to point typescript in the right direction?
Example below: