mirror of
https://github.com/0xShay/ticketchain.git
synced 2026-01-11 21:23:24 +00:00
19 lines
494 B
TypeScript
19 lines
494 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/> */}
|
|
</>
|
|
);
|
|
}
|