Skip to content

Commit e766b8c

Browse files
committed
Add React 18 for tests, change tsconfig.lib
1 parent 720a65f commit e766b8c

File tree

3 files changed

+1324
-10927
lines changed

3 files changed

+1324
-10927
lines changed

example/client/index.ts

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
import ReactDOM from 'react-dom';
1+
import { createRoot } from 'react-dom/client';
22
import Example from './Example';
33

4-
ReactDOM.render(Example(), document.querySelector('#root'));
4+
const rootElement = document.querySelector('#root') as Element;
5+
const root = createRoot(rootElement);
6+
7+
root.render(Example());

0 commit comments

Comments
 (0)