Files
ticketchain/app/page.tsx
2024-10-26 22:22:31 +01:00

22 lines
503 B
TypeScript

'use client';
import React from 'react';
import EventDescription from '@/components/custom/EventDescription';
import Home from '../components/Home';
import EventForm from '@/components/custom/EventForm';
import PreviousTickets from '@/components/PreviousTickets';
export default function Page() {
// Define the handleSubmit function
return (
<>
{/* <Home /> */}
{/* <EventForm onSubmit={(data) => handleSubmit(data)} /> */}
{/* <PreviousTickets/> */}
</>
);
}