Merge pull request 'Return of the App.tsx' (#97) from fix/return-app into develop

Reviewed-on: http://85.143.176.51:3000/free-land/front-end/pulls/97
This commit is contained in:
Denis Gorbunov 2022-08-23 09:42:12 +00:00
commit ebbb66e48a

16
src/App.tsx Normal file
View File

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