Warning looks like this:
Warning: React attempted to reuse markup in a container but the checksum was invalid.
This generally means that you are using server rendering and the markup generated on
the server was not what the client was expecting. React injected new markup to compensate
which works but you have lost many of the benefits of server rendering. Instead, figure out
why the markup being generated is different on the client or server:
(client) :touch;margin-right:-17px;margin-bottom:
(server) :touch;margin-right:0;margin-bottom:0;"
Hi, maybe you forgot the universal prop
Oh, that did the trick. I didn't notice this prop. Thanks.
Most helpful comment
Hi, maybe you forgot the
universalprop