Suppose I have 3 components named ATOM, MOLECULE, and SCREEN.
I call SCREEN in index.js and pass props to . In SCREEN i call MOLECULE and and pass props to In MOLECULE i call ATOM and and pass props to In ATOM i pass props to {props.atomtitle}
This is a basic example but although i would like to know that if i use props drilling in any large project then will it affect the performance of the app or it is fine to do it.
What can be the worse part of props drilling in react application.