18 lines
331 B
TypeScript
18 lines
331 B
TypeScript
import CreateEventForm from '@/components/gallery/CreateEventForm';
|
|
import { Metadata } from 'next';
|
|
import React from 'react';
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Create Event',
|
|
};
|
|
|
|
const CreateEvent = () => {
|
|
return (
|
|
<>
|
|
<CreateEventForm />
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default CreateEvent;
|