react import type defined in another file

Developer from somewhere

Problem: wanted to use a type defined in another file. Received following message: Named import from module ‘../mod.js’ ‘MyType’ is a type, but not a value.In order to import it, please use ‘import type’

Solution:

import type {MyType} from '../mod'