bug solved | export 'default' was not found in 'xxx'

LiberHome發表於2023-04-12


原因:export 匯出不止一個 需要用花括號解構出自己想要的


例如:

import Provider from 'mobx-react'

改為

import {Provider} from 'mobx-react'

相關文章