mirror of
https://github.com/tomru/pdfer.git
synced 2026-03-03 14:37:21 +01:00
10 lines
174 B
TypeScript
10 lines
174 B
TypeScript
import React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
import App from './App';
|
|
import './index.css';
|
|
|
|
ReactDOM.render(
|
|
<App />,
|
|
document.getElementById('root')
|
|
);
|