React Guideline: Patterns — Container/Presentational split. Description: Separate data logic from UI. Do: Container fetches presentational renders. Don't: Mixed data and UI in one. Good Example: <UserContainer><UserView/></UserContainer>. Bad Example: <User /> with fetch and render. Severity: Low. Docs: .