10 lines
125 B
TypeScript
10 lines
125 B
TypeScript
const App = () => {
|
|
return (
|
|
<div>
|
|
<h1>Investments Control Frontend</h1>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default App;
|