1
0
mirror of https://github.com/phuoc-ng/csslayout.git synced 2025-10-23 10:46:13 +02:00
Files
csslayout/client/index.jsx
Phuoc Nguyen e8f1dae504 Try react-snap
2019-11-15 15:17:09 +07:00

10 lines
252 B
JavaScript

import React from 'react';
import { hydrate, render } from 'react-dom';
import App from './App';
const rootElement = document.getElementById('root');
rootElement.hasChildNodes()
? hydrate(<App />, rootElement)
: render(<App />, rootElement);