Files
bigcapital/packages/webapp/src/containers/CashFlow/AccountTransactions/components/BankAccountDataTable.tsx

20 lines
412 B
TypeScript

import clsx from 'classnames';
import { DataTable } from '@/components';
import styles from './BankAccountDataTable.module.scss';
interface BankAccountDataTableProps {
className?: string;
}
export function BankAccountDataTable({
className,
...props
}: BankAccountDataTableProps) {
return (
<DataTable
{...props}
className={clsx('table-constrant', styles.root, className)}
/>
);
}