Skip to content

7 Context API

  • If my application becomes large, and it is data-oriented, what problem might occur?

7.1 Props Drilling

  • A problem that we should avoid
  • Passing props down through multiple layers of components
  • Middle layers might not need the data

  • How should we solve the props drilling problem?

7.2 Context API