pub fn is_react_like_name(name: &str) -> bool
Returns true if the name follows React naming conventions (component or hook). Components start with an uppercase letter; hooks match use[A-Z0-9].
use[A-Z0-9]