I have made simple React Native component library for testing:
import React from "react";import { Text } from "react-native";const TestComponent = () => <Text>Test test</Text>;export default TestComponent;
The project link is here: https://github.com/kdong007/test-component
After I have installed this in my main project using "yarn add ../test-component" and added into UI, I got "React is not defined" error
What is with my package setting?