Hydration
Hydration์ด๋?
ReactDOM.hydrateRoot()
import { hydrateRoot } from 'react-dom/client';
const container = document.getElementById('root');
const root = hydrateRoot(container);
root.render(<App/>);Last updated