RESTfulMC/Frontend/src/app/(pages)/page.tsx

12 lines
235 B
TypeScript
Raw Normal View History

2024-04-15 15:00:47 -07:00
/**
* The home page of the site.
*
* @returns the home page jsx
*/
const HomePage = (): JSX.Element => (
<main className="flex justify-center items-center h-screen">
<span>Hello World</span>
</main>
);
2024-04-15 13:16:08 -07:00
export default HomePage;