babel-plugin-import
babel-plugin-import copied to clipboard
Module parse failed: Export 'Input' is not defined
create antd.js with
import { Input } from 'antd';
export {
Input
}
cause error Module parse failed: Export 'Input' is not defined You may need an appropriate loader to handle this file type.
this problem seem like babel-plugin-import haven't handle export Declaration. use
import { Input } from 'antd';
export default {
Input
}
ExportDefaultDeclaration can be handle
+1
+1