2023-02-04 17:17:17 -05:00
|
|
|
import React from 'react';
|
|
|
|
import reactDom from 'react-dom';
|
|
|
|
import App from './src/App';
|
2023-02-04 18:17:47 -05:00
|
|
|
import './src/style.css';
|
2023-02-04 17:17:17 -05:00
|
|
|
|
|
|
|
reactDom.render(<App />, document.getElementById('root'));
|