Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

"window not defined" when rendering CSR app on Server #31

Open
aptDroid opened this issue May 30, 2019 · 0 comments
Open

"window not defined" when rendering CSR app on Server #31

aptDroid opened this issue May 30, 2019 · 0 comments

Comments

@aptDroid
Copy link

I have declared "window" in my express app as:

const Window = require('window');
const window = new Window();
const express = require('express');

I logged window object in my react component uses window object as:

const MyComponent = () => {
window.abc = 2;   //gives error, window not defined
console.log(abc);

return(<h1>{window.abc}</h1>);
}

I get error "undefined" at the first line "window.abc = 2"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant