React Native(Adaloカスタムコンポーネント作成時)でローカルモジュールをimportするときのエラー
エラー発生状況
- iOSアプリ用にAdaloのカスタムコンポーネント作成のため、React NativeのモジュールをXcodeのpreviewプロジェクトでimportする際、下記のエラーが発生
Error: Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: undefined. You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.
解決方法
- importするときにコンポーネント名に
{ }
をつける- 変更前:
import TestComponent from 'testlib'
- 変更後:
import { TestComponent } from 'testlib'
- 変更前:
詳細
- 調査中
ディスカッション
コメント一覧
まだ、コメントがありません