Reputation: 985
I made a new react native app by running the following code:
create-react-native-app test
cd test
npm install react-onsenui --save
npm start
After running those, the server starts but when I try to run the app, it gives me this error in Expo app:
Upvotes: 0
Views: 59
Reputation: 24680
The library you are trying to use is a web ui library. Since react-native doesn't have html dom elements this library won't work with it unless you somehow manage to convert it.
Upvotes: 2