React Guideline: TypeScript — Type component props. Description: Define interfaces for all props. Do: interface Props with all prop types. Don't: any or missing types. Good Example: interface Props { name: string }. Bad Example: function Component(props: any). Severity: High. Docs: .