mentorenwahl/docker/frontend/pages/index.tsx
Dominic Grimm 0e742965cc
All checks were successful
continuous-integration/drone/push Build is passing
Added frontend
2022-01-29 16:40:39 +01:00

12 lines
176 B
TypeScript

import type { NextPage } from "next";
const Home: NextPage = () => {
return (
<div>
<h1>Willkommen zur Mentorenwahl!</h1>
</div>
);
};
export default Home;