Created
March 25, 2018 20:18
-
-
Save alexnm/e2a18d284fc2fe9aaf52b0b858f10664 to your computer and use it in GitHub Desktop.
Basic client with hydrate
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import ReactDOM from "react-dom"; | |
import Layout from "./components/Layout"; | |
const app = document.getElementById( "app" ); | |
ReactDOM.hydrate( <Layout />, app ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment