What are the types of data that control a component? Technology Community › Category: React Native › What are the types of data that control a component? 0 Vote Up Vote Down VietMX Staff asked 4 years ago There are two types of data that control a component: props and state. props are set by the parent and they are fixed throughout the lifetime of a component. For data that is going to change, we have to use state.