📌  相关文章
📜  × react TypeError: Object(...) is not a function - Javascript代码示例

📅  最后修改于: 2022-03-11 15:04:03.008000             🧑  作者: Mango

代码示例2
// It looks fine, you just have to export your function that's it.
export let fillCalendar = (month, year) => {
    // do something
}

// instead of

let fillCalendar = (month, year) => {}