finished previousTicket component

This commit is contained in:
ashprit
2024-10-26 22:22:13 +01:00
parent 42fd17fa48
commit f4574c79bf
4 changed files with 134 additions and 24 deletions

View File

@@ -3,18 +3,16 @@ 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/> */}
</>
);
}