Redo events tab to show all events.
This commit is contained in:
12
src/app/(main)/websites/[websiteId]/events/EventsPage.tsx
Normal file
12
src/app/(main)/websites/[websiteId]/events/EventsPage.tsx
Normal file
@@ -0,0 +1,12 @@
|
||||
'use client';
|
||||
import WebsiteHeader from '../WebsiteHeader';
|
||||
import EventsDataTable from './EventsDataTable';
|
||||
|
||||
export default function EventsPage({ websiteId }) {
|
||||
return (
|
||||
<>
|
||||
<WebsiteHeader websiteId={websiteId} />
|
||||
<EventsDataTable websiteId={websiteId} />
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user