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