1Context vs Props
Props are the primary way to pass data in React, and you should use them for most things. Context is best for 'global' data that many components need at different nesting levels, such as the current authenticated user, a theme (dark/light mode), or a preferred language. Overusing Context can make component reuse more difficult because they become coupled to a specific Provider.
