react-grid-system
react-grid-system copied to clipboard
Unstyled at load with conditional rendering
I have a part of the page that is revealed at page load. A contrived example would be
{hasLoaded ? <Col xs={6} lg={9}>Hello World</Col> : <span>Loading...</span>}
Basically the <Col /> appears unstyled (width 100%) until the screen is resized to trigger a break point. This seems like it might have something to do with #114 perhaps, where they are seeing what is essentially FOUC with SSR.
+1
Can you validate whether this is still the case with the latest version (^6.4.0)? I'm not able to reproduce this.