2022-03-22 23:34:45 +11:00
|
|
|
import React from 'react';
|
|
|
|
import ReactDOM from 'react-dom';
|
|
|
|
import './index.css';
|
|
|
|
import App from './App';
|
|
|
|
import reportWebVitals from './reportWebVitals';
|
|
|
|
|
|
|
|
ReactDOM.render(
|
|
|
|
<React.StrictMode>
|
|
|
|
<App />
|
|
|
|
</React.StrictMode>,
|
2022-03-23 09:55:03 +11:00
|
|
|
document.getElementById('root'),
|
2022-03-22 23:34:45 +11:00
|
|
|
);
|
|
|
|
|
|
|
|
// If you want to start measuring performance in your app, pass a function
|
|
|
|
// to log results (for example: reportWebVitals(console.log))
|
|
|
|
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
|
|
|
|
reportWebVitals();
|
2022-03-23 09:55:03 +11:00
|
|
|
|
|
|
|
class ProblemComponent extends React.Component {
|
|
|
|
render() {
|
|
|
|
return <div ref="div" />;
|
|
|
|
}
|
|
|
|
}
|