antd-mobile , использование babel-plugin-import,Uncaught Ошибка: недопустимый тип элемента
"redux": "^4.0.0", узел: v10.2.1
.babelrc
{
"presets": ["env", "react"],
"plugins": [
"babel-plugin-transform-runtime",
"transform-object-rest-spread",
["import", { "libraryName": "antd-mobile", "style": "css"}]
]
}
сценарий:
import { Button } from "antd-mobile";
...
<Button type="primary">primary</Button>
...
тогда это прибывает:
invariant.js:42 Uncaught Error: Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: object.
Check the render method of `Button`.
как я могу это исправить?