No, Windows Start does not use React
pathartl
35 points
54 comments
March 23, 2026
Related Discussions
Found 5 related stories in 30.0ms across 3,471 title embeddings via pgvector HNSW
- Windows 11's Start menu was built using React – now switching to native WinUI steviey19 · 14 pts · March 21, 2026 · 62% similar
- Windows native app development is a mess domenicd · 384 pts · March 22, 2026 · 45% similar
- Show HN: A modern React onboarding tour library bilater · 11 pts · March 10, 2026 · 42% similar
- Time to Dump Windows? llm_nerd · 30 pts · March 20, 2026 · 39% similar
- Windows: Microsoft broke the only thing that mattered kjellsbells · 34 pts · March 10, 2026 · 38% similar
Discussion Highlights (16 comments)
mintplant
> This is the Windows 11 start menu. See that Recommended section at the bottom of it? That is built with React Native for Windows. No, that is not a full JavaScript framework in your start menu. There’s no web view / browser running gobbling up your resources. It’s React Native for Windows which is a flavor of React Native that directly calls Windows APIs including, you guessed it, WinUI 3. I would still say that means Windows Start uses React, frankly.
protocolture
>Windows Start does not use React Ok >This is the part of the Windows Start that uses React. Ok
meindnoch
>It’s React Native for Windows which is a flavor of React Native that directly calls Windows APIs including, you guessed it, WinUI 3. >So that’s it. Windows Start has a very small section (that can be disabled) that’s written in a framework that follows React principles and compiles down to native code. False. React Native doesn't "compile down to native code". It runs actual JavaScript, just not inside a browser, but a standalone JS runtime.
djsavvy
Talk about a misleading title XD
UqWBcuFx6NV4r
Fatal error by the author: They’re right, it doesn’t use React in the way that everyone actually means and criticises. It still technically uses React though, so—as is already evident—you still get the worst of the worst, bad-faith arguers saying “WELL ACKSHULLY…”
nu11ptr
That is actually still React. React is React Core + ReactDOM (web) renderer. React Native is the React Core + native renderer. They are both still React, and they both use Javascript, which while fast when JIT'd, is typically much slower than native code. I'm not commenting on whether this is a good or bad thing, but the article strikes me as a bit misleading.
nightski
It may not involve a webview, but from what I can tell it definitely still is running JavaScript. Either way it doesn't matter. As someone who has used Windows in a significant way since the 90s, the taskbar and start menu are a buggy mess. The new design is awful, I just want a list of my programs like before.
aufhebung
The recommended section using React Native is honestly more strange and confusing than if they had just used React for the whole thing. It doesn't seem like a particularly complex UI element, it would be easier to just develop it using the already used native APIs.
taspeotis
Title is pretty bad. It should be “Yes Windows Start Uses React but Not the Way You or I Do As Web Developers.”
RS-232
It’s garbage either way. On that note, do we have an open standard for OS implementations? Where the fuck is our modern scratch made OS written in Rust? It’s about time we topple this shitty triopoly.
uwais12
The amount of misinformation that spreads from a single tweet or blog post is insane. Someone says "Windows uses React" and suddenly it's gospel. The actual XAML Islands explanation makes way more sense from a performance standpoint. Microsoft has been using XAML for their UI framework for years, why would they switch to React for something as performance-critical as the Start menu?
dvt
The weirdest thing about this (which is frankly bizarre) is Microsoft emphatically shilling React Native for MacOS[1] usage (???). Like, wtf? Why? Not only is it embarassing for MS to be using another competing company's (Facebook's) UI layer when they're, you know, an operating system company. But they're also pushing it for competing operating systems. What idiotic PM signed off on this? How in the world does Microsoft benefit out of promulgating Facebook's technology? [1] https://microsoft.github.io/react-native-macos/docs/intro
hparadiz
I get to see this right when I just upgraded VSCode. https://x.com/0xAkuKun/status/2036235161956917593 VSCode had an instant search for 10 years. Now it's broken suddenly for the first time ever. Can't search anything. Back to greping like a cave man. sigh
nickvec
nit: the embedded screenshot of the Windows 11 Start Menu is low res enough that seeing/reading the Recommended section is challenging without squinting!
opengrass
A battle tank doesn't have diesel because it's disabled.
ipanemax
The internet tends to flatten everything into “it's React”. React Native for Windows is quite different from embedding a web React app in the OS shell. It’s essentially a renderer that maps React components to native WinUI controls. So saying “Windows Start is written in React” is a bit like saying an iOS app built with SwiftUI is “written in HTML”.