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