mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-02-12 17:40:47 +03:00
* fix(deps): update react * Fix * Use createRoot * Update tests * Format * Fix test Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Nathan Bierema <nbierema@gmail.com>
7 lines
181 B
TypeScript
7 lines
181 B
TypeScript
import { createRoot } from 'react-dom/client';
|
|
import React from 'react';
|
|
import App from './App';
|
|
|
|
const root = createRoot(document.getElementById('root')!);
|
|
root.render(<App />);
|