Hi,
First of all kudos to the maintainer you've done an awesome job. We're trying to integrate Native-Base in this project but we want this to reside under "my-app/app" space so we could share components based on native-base between web and mobile. After installing native-base under mentioned space "my-app/app" it says that cannot find module react-native
/packages/app/src/components/Button.js
// import React from "react"
import { Button, Center, NativeBaseProvider } from "native-base"
function Button(){
return (
<>
<Button onPress={() => console.log("hello world")}>Primary</Button>
</>
)
}
export default Button;
Hi, First of all kudos to the maintainer you've done an awesome job. We're trying to integrate Native-Base in this project but we want this to reside under "my-app/app" space so we could share components based on native-base between web and mobile. After installing native-base under mentioned space "my-app/app" it says that cannot find module react-native /packages/app/src/components/Button.js