react bootstrap Ошибка Warning: React.createElement: type is invalid -- expected a string (for built-in components)
Primary tabs
Warning: React.createElement: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: undefined. You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.
Как и сказано в ошибке, проблема может быть в том, что вы неправильно импортируете компонента, скажем тот, что экспортирован со словом default Надо импортировать не так:
import { DeptAdvavceListView } from './includes/DeptAdvavceListView';
а так:
import DeptAdvavceListView from './includes/DeptAdvavceListView';
- Log in to post comments
- 1867 reads