Wire manage-events/new with host picker and create flow against the new admin create API, including entry points from the events list and user detail.
13 lines
316 B
TypeScript
13 lines
316 B
TypeScript
import type { Metadata } from 'next'
|
|
import type { ReactNode } from 'react'
|
|
|
|
import { ADMIN_PAGE_TITLES } from '@/constants/adminPageTitles'
|
|
|
|
export const metadata: Metadata = {
|
|
title: ADMIN_PAGE_TITLES.manageEventNew,
|
|
}
|
|
|
|
export default function Layout({ children }: { children: ReactNode }) {
|
|
return children
|
|
}
|