import React, { FunctionComponent } from 'react'; import { IAlertsTableProps } from '@/pages/TransactionMonitoringAlerts/components/AlertsTable/interfaces'; import { columns } from './columns'; import { useAlertsTableLogic } from '@/pages/TransactionMonitoringAlerts/components/AlertsTable/hooks/useAlertsTableLogic'; import { UrlDataTable } from '@/common/components/organisms/UrlDataTable/UrlDataTable'; export const AlertsTable: FunctionComponent = ({ data }) => { const { Cell } = useAlertsTableLogic({ data }); return ( ); };