mirror of
https://github.com/pezkuwichain/pezkuwi-telemetry.git
synced 2026-06-12 19:11:01 +00:00
13 lines
268 B
TypeScript
13 lines
268 B
TypeScript
import * as React from 'react';
|
|
import * as ReactDOM from 'react-dom';
|
|
import App from './App';
|
|
import './index.css';
|
|
import { unregister } from './registerServiceWorker';
|
|
|
|
ReactDOM.render(
|
|
<App />,
|
|
document.getElementById('root') as HTMLElement
|
|
);
|
|
|
|
unregister();
|