Files
ticketchain/app/page.tsx
2024-10-25 23:46:16 +01:00

11 lines
178 B
TypeScript

import EventDescription from '@/components/custom/EventDescription';
import Home from './Home';
export default function Page() {
return (
<>
<Home />
</>
);
}