mirror of
https://github.com/phuoc-ng/csslayout.git
synced 2025-10-22 18:26:39 +02:00
10 lines
252 B
TypeScript
10 lines
252 B
TypeScript
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);
|