mirror of
https://github.com/yldio/copilot.git
synced 2024-11-28 22:20:06 +02:00
9 lines
152 B
JavaScript
9 lines
152 B
JavaScript
|
import React from 'react';
|
||
|
import ReactDOM from 'react-dom';
|
||
|
import App from './App';
|
||
|
|
||
|
ReactDOM.render(
|
||
|
<App />,
|
||
|
document.getElementById('root')
|
||
|
);
|