This commit is contained in:
Ayush Acharjya
2024-10-27 00:50:29 +01:00
parent 4c8c77495e
commit 99bc489909
4 changed files with 35 additions and 2 deletions

14
app/host/page.tsx Normal file
View File

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