Is the `window` object of React synthetic?
Accessing the window object in React is the same as anywhere else. It exists before any of your JavaScript runs. As a test, type about:blank into your location bar, open the console and type 'window'. It's there even with no other JavaScript on the page.
The window
object is the normal DOM object.
It is always available and safe to use (unless you are server side rendering).