Frontend/src/App.tsx
2022-07-29 10:05:24 +03:00

18 lines
659 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;