mirror of
https://github.com/binwiederhier/ntfy.git
synced 2024-11-07 12:24:22 +01:00
6 lines
196 B
JavaScript
6 lines
196 B
JavaScript
import * as React from 'react';
|
|
import { createRoot } from 'react-dom/client';
|
|
import App from './components/App';
|
|
|
|
const root = createRoot(document.querySelector('#root'));
|
|
root.render(<App />);
|