最佳答案
下面的导出语句提供了一个语法错误
export default const hello = () => console.log("say hello")
为什么?
我只能导出命名函数
export function hello() {
console.log("hello")
}
原因是什么?