umami/src/app/(main)/websites/[websiteId]/events/EventsDataTable.tsx
2025-03-22 03:48:18 -07:00

20 lines
539 B
TypeScript

import { useWebsiteEventsQuery } from '@/components/hooks';
import { EventsTable } from './EventsTable';
import { DataGrid } from '@/components/common/DataGrid';
import { ReactNode } from 'react';
export function EventsDataTable({
websiteId,
}: {
websiteId?: string;
teamId?: string;
children?: ReactNode;
}) {
const queryResult = useWebsiteEventsQuery(websiteId);
return (
<DataGrid queryResult={queryResult} allowSearch={true} autoFocus={false}>
{({ data }) => <EventsTable data={data} />}
</DataGrid>
);
}