I have started to learn React Native and as always begin by creating reusable components. I learnt how you can pass and access props while creating custom components.
I
In the constructor of HomeScreen, props should be able to passed to BaseComponent through
HomeScreen
BaseComponent
constructor(props) { super(props); ...
does it work for you?