pelita-webtournament/app/page.tsx

8 lines
144 B
TypeScript
Raw Normal View History

import PelitaTournament from "./tournament";
2024-07-19 18:00:43 +02:00
2024-07-05 11:41:32 +02:00
export default function Home() {
2024-08-31 11:56:27 +02:00
return (<>
<PelitaTournament></PelitaTournament>
2024-08-31 11:56:27 +02:00
</>);
2024-07-05 11:41:32 +02:00
}