I\'m building a isomorphic application, but I\'m using a third-party component that only renders on the client. So, particularly for this component, I need to only render it
if (typeof window === "undefined") { //client side code }
Without typeof you'll get an error.
typeof