19 lines
697 B
TypeScript
Executable File
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;
|