React Native(Adaloカスタムコンポーネント作成時)でローカルモジュールをimportするときのエラー

2022年11月22日

エラー発生状況

  • 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'

詳細

  • 調査中