Using a `Template Parts` folder instead of an `Includes` folder in a Custom WordPress Theme

It doesn’t matter. It just has to do with standard naming in WordPress because you typically call your “parts” with get_template_part();.

get_template_part(); checks if the file is in the child theme first, then uses the one from the parent theme if it doesn’t. It provides a way for you to override template files from the child theme.