Frontend/src/App.tsx
2022-09-28 17:28:06 +03:00

19 lines
697 B
TypeScript
Executable File

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