Files
ticketchain/app/host/page.tsx
Ayush Acharjya 99bc489909 add host
2024-10-27 00:50:29 +01:00

15 lines
215 B
TypeScript

'use client';
import EventForm from '@/components/custom/EventForm';
import React from 'react';
const page = () => {
return (
<>
<EventForm onSubmit={() => {}} />
</>
);
};
export default page;