I'm looking for a way to share a React Native component with 3rd parties without having to share the actual source code.
Something like a .jar
in Java or a .dll
for C#.
So assuming we have company A and company B, i (as company B) am looking for a way to provide a react native library to company A without being able to navigate through my source code.
Ideally I want others to be able to
import CustomComponent from '...myCustomComponent';
but not being able to look in the actual code.
Any thoughts are welcome.