### Is there an existing issue for this? - [x] I have searched the existing issues and my issue is unique - [x] My issue appears in the command-line and not only in the text editor ### Description Overview <!--Brief description--> In React 19, you can render `<Context>` as a provider instead of `<Context.Provider>`. However when doing so `jsx-no-constructed-context-values` doesn't detect violations. <!--Show example of your code (as text format), add images/videos/gifs to help explain example--> <!--and/or Link of repo to where issue is occurring--> ```tsx const MyContext = createContext(); function MyComponent(props) { return (<> {/* old style - violation detected */ } <MyContext.Provider value={{ hello: 'world' }} /> {/* react 19 style - no violation */ } <MyContext value={{ hello: 'world' }} /> </>); } ``` <!--What is happening? / What is the error?--> <!--What command(s) did you run to reproduce issue?--> ### Expected Behavior <!--Brief description--> <!--Show example of code (as text format), add images/videos/gifs to help explain expected behavior--> ### eslint-plugin-react version v7.37.2 ### eslint version v8.57.1 ### node version v18.20.6