mirror of
https://github.com/bendtherules/piktochart-create-editor.git
synced 2026-08-18 13:52:56 +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 registerServiceWorker from './registerServiceWorker';
|
|
import './index.css';
|
|
|
|
ReactDOM.render(
|
|
<App />,
|
|
document.getElementById('root') as HTMLElement
|
|
);
|
|
registerServiceWorker();
|