return of App.tsx

This commit is contained in:
Maximus 2022-08-19 19:49:34 +03:00
parent a314782acb
commit 4b9ce789f7

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;