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