Frontend/src/App.tsx
2022-07-27 18:11:56 +03:00

19 lines
660 B
TypeScript

/* -------------------------------------------------------------------------- */
/* Libraries */
/* -------------------------------------------------------------------------- */
import React from "react";
/* -------------------------------------------------------------------------- */
/* Application root component */
/* -------------------------------------------------------------------------- */
/**
* Application root component
* @return {JSX.Element}
*/
function App() {
return (
<div>Hello world!</div>
);
}
export default App;