missingKeyJSX element in list/callback lacks key prop. React Luau warns about missing keys in _G.__DEV__ mode. Add a unique `key` prop using a stable identifier (not array index).small-rules/require-react-component-keysRequire keys on nested React JSX children, fragments, and configured iteration or memoization contexts.
missingKeyJSX element in list/callback lacks key prop. React Luau warns about missing keys in _G.__DEV__ mode. Add a unique `key` prop using a stable identifier (not array index).rootComponentWithKeyRoot return has unnecessary key prop. The key gets overwritten by the parent anyway. Remove the `key` prop.This rule accepts one options object after the severity.
function Bad1() { return ( <> <div /> <span /> </> );}function Good1() { return <div />;}