7 lines
166 B
TypeScript
7 lines
166 B
TypeScript
|
import React from 'react';
|
||
|
import { render } from 'react-dom';
|
||
|
import App from './App';
|
||
|
import './App.global.css';
|
||
|
|
||
|
render(<App />, document.getElementById('root'));
|