Files
ticketchain/app/page.tsx

21 lines
411 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';
export default function Page() {
// Define the handleSubmit function
return (
<>
{/* <Home /> */}
{/* <EventForm onSubmit={(data) => handleSubmit(data)} /> */}
</>
);
}