Skip to content

Instantly share code, notes, and snippets.

@ovpv
Last active August 6, 2019 05:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ovpv/2e3d63927c355de2117c1212b231baa5 to your computer and use it in GitHub Desktop.
Save ovpv/2e3d63927c355de2117c1212b231baa5 to your computer and use it in GitHub Desktop.
React SSR client index file
import React from "react";
import { hydrate } from "react-dom";
hydrate(
<div>Hello World</div>,
document.getElementById("app")
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment