ntfy/web/src/index.js

7 lines
196 B
JavaScript
Raw Normal View History

2022-02-19 03:49:51 +13:00
import * as React from 'react';
2022-04-08 12:31:24 +12:00
import { createRoot } from 'react-dom/client';
2022-02-21 10:55:55 +13:00
import App from './components/App';
2022-02-19 03:49:51 +13:00
2022-04-08 12:31:24 +12:00
const root = createRoot(document.querySelector('#root'));
root.render(<App />);