Hello, I'm new to React and I have a question about sharing properties. For example, I want to have a parent component that will have a "visible" property, and I want to share it with all my child components, so I can use it this way, for example:
CustomInput visible="true";
CustomDropDown visible="false";
I would like to know the best way to do this, respecting good practices. Thanks for the help!