Redo events tab to show all events.

This commit is contained in:
Mike Cao 2024-08-01 21:05:43 -07:00
parent 10f65cae68
commit 9c32057841
18 changed files with 152 additions and 66 deletions

View file

@ -1,8 +1,8 @@
import { Metadata } from 'next';
import EventDataPage from './EventDataPage';
import EventsPage from './EventsPage';
export default async function ({ params: { websiteId } }) {
return <EventDataPage websiteId={websiteId} />;
return <EventsPage websiteId={websiteId} />;
}
export const metadata: Metadata = {