The Scenario
I am writing an React-Native-Web (RNW) app. The basic design is a core application that takes a library of custom React-Native components as a node package.
The component library is also an RNW app as i use StoryBook to allow development in isolation.
The Issue
When i install the component library from git using npm i ... into the core application and import it into the App.js in the src folder i get the following error...
ReferenceError: Can't find variable: Symbol
This error is located at:
in Styled(SimpleList) (created by App)
in RCTView (created by View)
in View (created by App)
in App (created by NativeApp)
in NativeApp
in RCTView (created by View)
in View (created by AppContainer)
in RCTView (created by View)
in View (created by AppContainer)
in AppContainer
I have also tried to install es6-symbol but this doesn't seem to have any affect.
Any suggestions please?
