You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 1, 2020. It is now read-only.
The component renders a different markup on the server vs on the client. This causes issues, such as those described by reactjs/react.dev#25.
If you are lucky then react will patch the differences. If you are not so lucky then the differences will remain and cause issues. For example if the server renders <div className="foo"> and the client renders <div className="bar">, then the difference in the className prop will not be patched up and the element will be styled incorrectly.
The component renders a different markup on the server vs on the client. This causes issues, such as those described by reactjs/react.dev#25.
If you are lucky then react will patch the differences. If you are not so lucky then the differences will remain and cause issues. For example if the server renders
<div className="foo">and the client renders<div className="bar">, then the difference in the className prop will not be patched up and the element will be styled incorrectly.