mirror of
https://github.com/maelgangloff/domain-watchdog.git
synced 2025-12-17 09:45:29 +00:00
8 lines
200 B
TypeScript
8 lines
200 B
TypeScript
import * as React from 'react';
|
|
import * as ReactDOM from 'react-dom/client';
|
|
|
|
const rootElement = document.getElementById('root');
|
|
const root = ReactDOM.createRoot(rootElement!);
|
|
|
|
root.render(<></>)
|