In the context of React development, what is the recommended approach to handle default values in function components, given that support for 'defaultProps' will be removed in a future major release?
A) Using the 'propTypes' library to define default values.
B) Assigning default values directly in the JSX.
C) Utilizing JavaScript default parameters in the function signature.
D) Applying default values through the component's state management.