2022-03-22 23:34:45 +11:00
|
|
|
import React from 'react';
|
|
|
|
import logo from './logo.svg';
|
|
|
|
import './App.css';
|
|
|
|
|
|
|
|
function App() {
|
|
|
|
return (
|
|
|
|
<div className="App">
|
|
|
|
<header className="App-header">
|
2022-03-23 09:55:03 +11:00
|
|
|
<ProblemComponent />
|
2022-03-22 23:34:45 +11:00
|
|
|
<img src={logo} className="App-logo" alt="logo" />
|
|
|
|
<p>
|
|
|
|
Edit <code>src/App.tsx</code> and save to reload.
|
|
|
|
</p>
|
|
|
|
<a
|
|
|
|
className="App-link"
|
|
|
|
href="https://reactjs.org"
|
|
|
|
target="_blank"
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
>
|
|
|
|
Learn React
|
|
|
|
</a>
|
|
|
|
</header>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-03-23 09:55:03 +11:00
|
|
|
class ProblemComponent extends React.Component {
|
|
|
|
render() {
|
|
|
|
return <div ref="div" />;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-22 23:34:45 +11:00
|
|
|
export default App;
|